Riak KV 2.1.1 用の Java クライアントを使用しています。インデックスを作成して名前空間に適用した後、ウェブサイトで提供されているドキュメントに従っているにもかかわらず、適切なメソッドが見つかりませんというエラーが表示されます。これに対する解決策は何ですか?
ありがとう。
以下のコードと完全なエラーを参照してください。
YokozunaIndex famousIndex = new YokozunaIndex("famous", "_yz_default");
StoreIndex storeIndex = new StoreIndex.Builder(famousIndex)
.build();
client.execute(storeIndex);
Namespace streets=new Namespace("streets");
StoreBucketPropsOperation storePropsOp = new StoreBucketPropsOperation.Builder(streets)
.withSearchIndex("famous")
.build();
client.execute(storePropsOp); // this is where I am getting error