Tagged Questions

4
votes
3answers
82 views

comparing databases and their locks

I have heavy transaction stuff going on and would like to gain information about how locks are implemented in current databases. Working on zero budget my choise is limited to mysql 5.5 and postgres ...
2
votes
4answers
513 views

PostgreSQL & SQL Server btree storage fundamentals question

I know that SQL Server can store a row's data at leaf level in a clustered index. I believe that PostgreSQL doesn't do this. If so, what is its storage paradigm? My main question is as follows. ...
2
votes
4answers
3k views

What's the difference between B-Tree and GiST index methods (in PostgreSQL)?

I have been working on optimizing my Postgres databases recently, and traditionally, I've only ever use B-Tree indexes. However, I saw that GiST indexes suport non-unique, multicolumn indexes, in the ...
1
vote
1answer
179 views

Hybrid “Index-like” btree structure - can PostgreSQL do this?

I am new to PostgreSQL. I have a very unusual requirement for a hybrid database I need to build. From modules I've seen, it seems to me that the following is possible. I need to be able to add key - ...