You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can reduce the index size by referencing the array index of the key, as opposed to the key text itself when constructing the $ entry of each record.
Above, "title", "author.firstName", and "'author.tags.name" are going to be repeated for n number of entries. However, we can minimize the index size by simply using the key index:
Description
We can reduce the index size by referencing the array index of the key, as opposed to the key text itself when constructing the
$
entry of each record.Describe the solution you'd like
Currently, the index stores keys of every entry:
Above,
"title"
,"author.firstName"
, and"'author.tags.name"
are going to be repeated forn
number of entries. However, we can minimize the index size by simply using the key index:With the above, we saved a considerable amount of space.
The text was updated successfully, but these errors were encountered: