Search code examples
pythontwistedaerospike

txAerospike - Aerospike and Twisted


Is there a twisted library for Aerospike? Has anyone used both in combination - or is Aerospike so fast that the standard python client is enough?


Solution

  • The Aerospike C client is very fast, but wrapping standard Python around it slows things down, mainly due to memory allocations and type casting.

    I don't know of a project combining Twisted with the Aerospike client. Async functions are being considered but Python has different approaches to it from Twisted to gevent. We'd be happy to support such a project.