Which data structures are used in voltdb

有些话、适合烂在心里 提交于 2020-01-03 03:01:07

问题


In Voltdb, which data structures are used to store data when we make a query? For example, with query insert into <> value(X,X,X), How the is data actually stored in the memory.


回答1:


VoltDB is built on top of HStore database where rows of tables are placed contiguously in main memory (values are stored inline but pointers are used for long column values that use a shared pool of memory) with conventional B-tree indexing.

Although VoltDB uses Java stored procedures to run transactions, the actual tables and views are stored off the heap and are managed by the execution engine that's written in C/C++.



来源:https://stackoverflow.com/questions/38288266/which-data-structures-are-used-in-voltdb

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!