Performance improvement: object database query caching? #1100
Labels
1a Epic
High level concept to be addressed. Description should contain a list referencing child User Stories
2a Discussion Needed
Prompt for team to discuss at next stand up.
6 Performance
Impacts flag identifying system/user efficiency, performance, etc.
performance
Milestone
Most of data stored in the object database is in a red-black tree. Currently, every query searches from the root to the leaf, the complexity is
O(log(n))
. Generally, some data is much hotter than others, so it makes sense to cache the hottest results (pointers or addresses) to avoid searching from root to leaf for same data again and again.Things to be done:
Thoughts?
The text was updated successfully, but these errors were encountered: