Amin Moghaddam

Results 1 comments of Amin Moghaddam

``` python import aerospike config = {'host': ('127.0.0.1', 3000)} client = aerospike.client(config).connect() key = ('test', 'demo', 'foo') tags = client.llist(key, 'llistbin') tags.add(1) tags.add(2) tags.range_limit(1, 2, 2) ```