I have located many resources on the web giving general overviews of MVCC (multi-version concurrency control) concepts, but no detailed technical references on exactly how it should work or be implemented. Are there any documents online, or books offline, that contain enough theory (and a bit of practical help, ideally) on which to base an implementation? I wish to emulate more or less what PostgreSQL does.

(For info I will be implementing it in SAS using SAS/Share - which provides some locking primitives and concurrent read/write access to the underlying data store, but nothing in the way of transaction isolation or proper DBMS features. If anyone is familiar with SAS/Share and thinks this is an impossible task, please shout!)

link|improve this question

71% accept rate
Is there any reason you want to use SAS/SHARE ahead of, say, a RDBMS? – sasfrog Mar 4 '11 at 0:34
Stone age IT department/project managers who have interesting opinions on the concept of using the right tool for the job. – jl6 Mar 27 '11 at 4:12
Wow. And they don't mind that you're chiseling a flat round object out of bedrock in a field surrounded by wheel merchants?! – sasfrog Mar 27 '11 at 4:33
feedback

2 Answers

up vote 2 down vote accepted

Transaction Processing: Concepts and Techniques and Transactional Information Systems: Theory, Algorithms, and the Practice of Concurrency Control and Recovery are authoritative source of transaction processing.

Both these books are also mentioned in PostgreSQL Wiki.

link|improve this answer
feedback

This post provides quite detailed description of MVCC techniques http://highlyscalable.wordpress.com/2012/01/07/mvcc-transactions-key-value/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.