If you create a “default index”, does it alias the built-in one available through Documents(Collection(/*...*/))
? That is, does it cost more indexing space to create a default index?
I’m using “default index” to mean one that has no terms or values.
For example:
CreateIndex({
name: 'my_default_index',
source: Collection('some_collection'),
serialized: true
})
Another way to ask, does it save any DB costs to refactor an app to use Documents
and avoid creating a default index?
Interesting side question (purely academic, because I don’t know why this would be useful), if multiple default indexes are created for the same Collection, are they all aliased or does each one actually get created and store another copy of the index data?