Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你如何在rocksdb中以列格式写入数据。
列的示例可以是Id, state, URL, fieldNames, query;
Id, state, URL, fieldNames, query
我应该能够读取所有提供的数据Id。
Id
RocksDB 是键值存储,所以没有列的概念。您可以做的是将序列化对象存储为值,在您的示例中将包含例如状态、url、字段名和查询,并使用 id 作为键。