linvodb3
linvodb3 copied to clipboard
memory usage of find({}).sort()
Hi there, is the sorting being done in the node.js process memory? for example if I need to sort 5 million data, would it consume too much memory, like 500M or 1G? thanks
depending on the indexing, it can consume high amounts of memory
By default, linvodb makes an index for every key.
The best thing to do is to test it and let me know