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
Named databases in LMDB work by prepending the database name to each key in that databsae.
If you're more likely to access one table at a time, even for just a few records, it would be beneficial to separate them into 2 databases, as the cache is more likely to be warm for the BTree parent nodes that are shared among those common records.
My lmdb db has multiple tables to support mostly reads and few writes in operation.
However, 2 tables support an equal number of writes, reads and deletes. These tables are independent of the other tables in the db.
As performance is critical, would it be better to create a seperate lmdb db for these 2 tables?
The text was updated successfully, but these errors were encountered: