Update embedded-rocksdb.md

This commit is contained in:
alexey-milovidov 2020-11-08 18:35:22 +03:00 committed by GitHub
parent e75230dee3
commit a1fee4ddc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,6 @@ PRIMARY KEY key
## Description {#description}
- `primary key` must be specified, only support one primary key. The primary key will serializeBinary as rocksdb key.
- Columns other than the primary key will be serializeBinary as rocksdb value in corresponding order.
- Queries with key `equals` or `in` filtering will be optimized to multi keys look up from rocksdb.
- `primary key` must be specified, it only supports one column in primary key. The primary key will serialized in binary as rocksdb key.
- columns other than the primary key will be serialized in binary as rocksdb value in corresponding order.
- queries with key `equals` or `in` filtering will be optimized to multi keys lookup from rocksdb.