Closed sparkpool closed 9 years ago
Index information can be obtained in the following ways.
show indexes stat index
java client Node node = client.getNodes()[0]; String result = Info.request(node, "sindex-list:"); result = Info.request(node, "sindex/" + namespace); result = Info.request(node, "sindex/" + namespace + '/' + indexName);
The result is a single string which needs to be parsed for individual index information. We do accept code contributions that provide parsing of these result strings into more user-friendly classes.
Thanks Brian for your help !!!!
Can we have some method in aerospike java client which can provide us all indexes present in all namespaces or in a particular namespace.