エアロスキーのビン値としてリストを使用したかったのです。だから、http://www.aerospike.com/docs/guide/cdt-list.htmlは良い選択肢のように思えます。しかし、golang https://github.com/aerospike/aerospike-client-go/blob/master/examples/list_map.goのクライアントの例では、getとputだけが表示されます。Golangクライアントがエアロスキーでcdtリストの操作を実行する
key, _ := as.NewKey(*shared.Namespace, *shared.Set, "listkey1")
client.Delete(shared.WritePolicy, key)
list := []string{"string1", "string2", "string3"}
bin := as.NewBin("listbin1", list)
client.PutBins(shared.WritePolicy, key, bin)
record, err := client.Get(shared.Policy, key, bin.Name)
shared.PanicOnError(err)
receivedList := record.Bins[bin.Name].([]interface{})
validateSize(3, len(receivedList))
validate("string1", receivedList[0])
validate("string2", receivedList[1])
validate("string3", receivedList[2])
他のすべてのAPIについてはどうなりますか?どのように私はリストに追加するか、リスト内のオブジェクトの数を取得するなど?どんなドキュメンテーションへの参照も感謝します。
ありがとうございます。