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.
我正在使用 YCSB 进行基准测试。我正在用 Java 编写自定义代码。我有两个字段,它们是 String 和 Int 类型,但 db.insert 方法采用HashMapof<String,ByteIterator>类型。如何将字符串和整数转换为ByteIterator类型?请帮忙
HashMap
<String,ByteIterator>
ByteIterator
您可以使用
new com.yahoo.ycsb.StringByteIterator(string);
我建议你看看MongoDbClient它是如何被支持的。
MongoDbClient