ZDB-high performance key-value store

Nowadays key-value stores play a critical part in large-scale high performance applications. Attention paid to key-value stores prove the importance of the key-value store that have already been used. This paper presents ZDB which is a high performance persistent key-value store designed for optimizing reading and writing operations. This key-value store support sequential write and single disk seek for read and write operations. Key contributions of this paper are the principles in architecture, design and implementation of a high performance persistent key-value store. This is achieved by using a data file structure organized as commit log storage where every new data is appended to the end of the data file. An in memory index is used for random reading. ZDB architecture optimize the index of key-value store for auto incremental integer keys which can be applied in storing many real life data efficiently with minimize memory overhead and reduce the complexity for partitioning data.