Hi, We are exploring the H2 database implementation details regarding the pagestore engine. We are interested to know the below details about the pagestore indexing.
*1.* How does the pagestore Btree locking happen? *2.* We observed that you are using a synchronized block in the pagestore/db/PageStoreBtreeIndex.java <https://github.com/h2database/h2database/blob/888e2284ffc5a76ebc1cf7346144e815b9c44813/h2/src/main/org/h2/pagestore/db/PageBtreeIndex.java#L350> file. As mentioned in the docs, if you're using table-level locking, what is the purpose of this block? *3.* How does locking happen for Hash and AVL Tree indices? (We observed that none of the blocks were synchronized in those two codes) Thank you -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/h2-database/52d6b0c5-4960-46e4-baac-78cb8542369an%40googlegroups.com.
