When we are storing millions of records in a colle...
# community-help
n
When we are storing millions of records in a collection where each record has several properties, does the property length matter? For e.g. would it help if the object was
{n: 'Richard', ... }
instead of
{name: 'Richard', ... }
?
j
No, the properly name length doesn’t matter for the in-memory indices
Only the property value length affects index sizes
n
Thanks @Jason Bosco!
👍 1