Skip to content

Instantly share code, notes, and snippets.

@elit-altum
Last active December 8, 2020 17:00
Show Gist options
  • Save elit-altum/98c5683911c0233e735f6ff559b3ad2a to your computer and use it in GitHub Desktop.
Save elit-altum/98c5683911c0233e735f6ff559b3ad2a to your computer and use it in GitHub Desktop.
// Forward Index
[{
_id: 1447,
age: 25
}, {
_id: 1448,
age: 23
}, {
_id: 1449,
age: 27
}, {
_id: 1450,
age: 25
}
]
// Inverted index
[{
age: 25,
_id: [1447, 1450]
}, {
age: 23,
_id: [1448]
}, {
age: 27,
_id: [1449]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment