aerospike-client-python icon indicating copy to clipboard operation
aerospike-client-python copied to clipboard

Aerospike Python Client

Results 184 aerospike-client-python issues
Sort by recently updated
recently updated
newest added

4.1.0 client break as_config structure, so python client won't compile. I thought I fixed it, but I am not good at C.

I've added support for ArchLinux installation & information about dependencies for it.

See https://github.com/aerospike/aerospike-client-python/issues/121

Establishing client connection to aerospike cluster is expensive and therefore I'm trying to ensure client keeps certain number of connections open so that incoming requests do not have to first...

When trying to install aerospike via `sudo pip3 install --upgrade aerospike` I get the following error: ``` Complete output from command /usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-8fyrk27g/aerospike/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code,...

Collecting aerospike Using cached https://files.pythonhosted.org/packages/62/e1/b33a0bcbb1f223fecb22bcfa70fd7add740ab96cc6ce1d083f14a429f2ca/aerospike-3.10.0.tar.gz ERROR: Command errored out with exit status 8: command: /Library/Frameworks/Python.framework/Versions/3.8/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/r8/839_4ptd2pq2c6s1z7gfdvbr0000gp/T/pip-install-4myvi98j/aerospike/setup.py'"'"'; __file__='"'"'/private/var/folders/r8/839_4ptd2pq2c6s1z7gfdvbr0000gp/T/pip-install-4myvi98j/aerospike/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info...

looks like in some situation the aerospike so linked to the wrong SSL so we do the following, create venv on ci server (ubuntu 18.04) and copy it to docker...

I am currently part of a team that develops a Python Rest API and uses Aerospike as a caching feature. However, its initialization has significantly increased the memory consumption and...

Feature request: * `Client.admin_query_role`/`Client.admin_query_roles`/`Client.admin_create_role` should support the IP whitelist functionality that was added in AS 4.6. * Additionally a new function should also be introduced to do the equivalent to...

what I did was > scan_handler=client.scan('my_namespace','my_set') res= scan_handler.results(policy={'socket_timeout':0}) and I got an error from here: https://github.com/aerospike/aerospike-client-c/blob/cfdfdd1d9048b4d85dbdff4f943e827f7feaf127/src/main/aerospike/as_socket.c#L466 if I don't set socket_timeout or set a positive number, I can get the...