How to get a list of kits using the Aerospike go client?

With the Aerospike aql tool, you can query "SHOW SETS" and get a list of all available sets in the namespace. But how to get this listing with Aerospike golang customer?

+3


source to share


1 answer


You are looking for the "info" commands.

https://godoc.org/github.com/aerospike/aerospike-client-go#RequestInfo



You will need to invoke the "sets" command for your request.

http://www.aerospike.com/docs/reference/info/#sets

+5


source







All Articles