如何将mongodb索引存储在RAM中?例如,如果有文件如:
{ fruit: 'apple', tags: ['hello', 'world', 'rainbow' ] }
{ fruit: 'banana', tags: ['hello', 'world', 'unicorn' ] }
{ fruit: 'orange', tags: ['hello', 'world', 'lion' ] }
使用tags
字段的索引。 'hello'
和'world'
标记是否存储在单个内存位置,然后指针在索引中引用它们?或者是否为每个标记实例化了一个新的String
?