LevelDB Description
LevelDB is a fast key/value storage library that Google has created. It provides an ordered mapping of string keys to string value. Keys and values can be stored in arbitrary byte arrays. Data is stored in key order. To override the order of the data, callers can provide a custom comparator function. Multiple changes can be made to an atomic batch. To maintain a consistent view of data, users can create a temporary snapshot. Data can be used for forward and backward iteration. Snappy is used to automatically compress data. External activity (file system operations, etc.) The information is transmitted via a virtual interface to allow users to customize the operating system interactions. A database with over a million entries is used. Each entry is assigned a 16-byte key and a 100-byte value. The benchmark reduces the size of the values to approximately half of their original size. The benchmark lists the performance of sequential reading in the forward and reverse directions, as well as the performance of random lookups.
Integrations
Company Details
Product Details
LevelDB Features and Options
LevelDB User Reviews
Write a Review- Previous
- Next