Known Limitations
Known Limitations of EloqKV:
- The value associated with each key is limited to a maximum size of 256MB.
- The RocksDB persistent storage engine does not currently support replication, thus data may no-longer be available when node fails. For high availability, consider using Cassandra or DynamoDB instead.
- Redis, which runs data operations in a single thread, executes transactions enclosed in MULTI/EXEC in a serial manner. EloqKV supports concurrent transactions, therefore in EloqKV transactions may be aborted (i.e. fail) due to conflicts. Users cannot assume all MULTI/EXEC transactions will always return success even in single node situation.
- Set command doesn't support expiration options.