gpt4 book ai didi

java - 使用 aerospikeTemplate java 将数据插入 aerospike

转载 作者:行者123 更新时间:2023-11-29 04:19:43 24 4
gpt4 key购买 nike

我正在尝试将数据插入 aerospike。为了对 AerospikeClient 执行相同的操作,我写道:

Key key = new Key("test", "myset", "mykey");
Bin bin = new Bin("shahjahan", "k");
aerospikeClient.put(new WritePolicy(), key, bin);

现在,我想使用 AerospikeTemplate 做同样的事情。但是 AerospikeTemplate 中的插入方法需要对象作为参数,而不是键和容器。

@Override
public <T> T insert(T objectToInsert, WritePolicy policy) {
Assert.notNull(objectToInsert, "Object to insert must not be null!");
try {
AerospikeData data = AerospikeData.forWrite(this.namespace);
converter.write(objectToInsert, data);
Key key = data.getKey();
Bin[] bins = data.getBinsAsArray();
client.put(policy == null ? this.insertPolicy : policy, key, bins);
}
catch (AerospikeException o_O) {
DataAccessException translatedException = exceptionTranslator
.translateExceptionIfPossible(o_O);
throw translatedException == null ? o_O : translatedException;
}
return null;
}

我想知道如何通过键和值来插入数据。

最佳答案

您的对象需要有一个 @Id 注释来指定记录的键。所有其他字段将存储为 bin。这是一个例子:

public class Product {
@Id
private Integer id;
private String productId;
private String description;
private String imageUrl;
private double price;

...
}

然后你只需在对象上调用 save() :

productRepository.save(product);

关于java - 使用 aerospikeTemplate java 将数据插入 aerospike,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50132293/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com