Skip to content
This repository was archived by the owner on Mar 22, 2023. It is now read-only.
/ pmemkv Public archive

Key/Value Datastore for Persistent Memory

License

Notifications You must be signed in to change notification settings

pmem/pmemkv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ddf6a14 · Mar 22, 2023
Aug 29, 2022
Jul 29, 2021
Feb 3, 2022
Sep 20, 2021
Oct 11, 2021
May 17, 2022
Feb 3, 2022
Jun 13, 2019
May 16, 2019
May 5, 2021
Jul 29, 2021
Jul 2, 2021
Jul 27, 2021
Jul 23, 2021
Feb 9, 2021
Mar 2, 2023
May 26, 2020
Jan 28, 2020
Jan 28, 2020

Repository files navigation

pmemkv

GHA build status Coverity Scan Build Status Coverage Status PMEMKV version Packaging status

⚠️ Discontinuation of the project

The pmemkv project will no longer be maintained by Intel.

  • Intel has ceased development and contributions including, but not limited to, maintenance, bug fixes, new releases, or updates, to this project.
  • Intel no longer accepts patches to this project.
  • If you have an ongoing need to use this project, are interested in independently developing it, or would like to maintain patches for the open source software community, please create your own fork of this project.
  • You will find more information here.

Introduction

pmemkv is a local/embedded key-value datastore optimized for persistent memory. Rather than being tied to a single language or backing implementation, pmemkv provides different options for language bindings and storage engines.

For more information, including C API and C++ API see: https://pmem.io/pmemkv. Documentation is available for every branch/release. For most recent always see (master branch):

Latest releases can be found on the "releases" tab.

There is also a small helper library pmemkv_json_config provided. See its manual for details.

Table of contents

  1. Installation
  2. Language Bindings
  3. Storage Engines
  4. Benchmarks
  5. Contact us

Installation

Installation guide provides detailed instructions how to build and install pmemkv from sources, build rpm and deb packages and explains usage of experimental engines and pool sets.

Language Bindings

pmemkv is written in C/C++ and can be used in other languages - Java, Node.js, Python, and Ruby.

pmemkv-bindings

C/C++ Examples

Examples for C and C++ can be found within this repository in examples directory.

Other Languages

The above-mentioned bindings are maintained in separate GitHub repositories, but are still kept in sync with the main pmemkv distribution.

Storage Engines

pmemkv provides multiple storage engines that share common API, so every engine can be used with all language bindings and utilities. Engines are loaded by name at runtime.

Engine Name Description Experimental Concurrent Sorted Persistent
cmap Concurrent hash map No Yes No Yes
vsmap Volatile sorted hash map No No Yes No
vcmap Volatile concurrent hash map No Yes No No
csmap Concurrent sorted map Yes Yes Yes Yes
radix Radix tree Yes No Yes Yes
tree3 Persistent B+ tree Yes No No Yes
stree Sorted persistent B+ tree Yes No Yes Yes
robinhood Persistent hash map with Robin Hood hashing Yes Yes No Yes

The production quality engines are described in the libpmemkv(7) manual and the experimental ones are described in the ENGINES-experimental.md file.

pmemkv also provides testing engines, which may be used in unit tests or for benchmarking application overhead

Engine Name Description Experimental Concurrent Sorted Persistent
blackhole Accepts everything, returns nothing No Yes No No
dram_vcmap Volatile concurrent hash map placed entirely on DRAM Yes Yes No No

Contributing a new engine is easy, so feel encouraged!

Benchmarks

Experimental benchmark based on leveldb's db_bench to measure pmemkv's performance is available here: https://github.com/pmem/pmemkv-bench (previously pmemkv-tools).

Contact us

If you read the blog post and still have some questions (especially about discontinuation of the project), please contact us using the dedicated e-mail: pmdk_support@intel.com.