Use this tag for database that implement the ordered key-value store paradigm. They may be in-memory and / or durable on disk.
Ordered Key-Value Store have features that are a superset of key-value store. They keep the key space sorted lexicographic (aka. alphabetical) byte order making it suitable to build higher abstraction (also called layers or extensions).
Ordered Key-Value Store can be seen as an index that is a database system. Some are available over the network (FoundationDB, TiKV), others are embedded (LevelDB, RocksDB, WiredTiger, Kyoto Cabinet family, LMDB, Sophia). The primary ancestor is Oracle BerkeleyDB also known under the name of Sleepycat Database.