asyncio (PEP 3156) Gibson cache support
Project description
aiogibson is a library for accessing a gibson cache database from the asyncio (PEP-3156/tulip) framework.
Code heavily reused from awesome aioredis library. GibsonPool, GibsonConnection, almost direct copy of RedisPool and RedisConnection, so I highly recommend to checkout aioredis.
Example
import asyncio
from aiogibson import create_gibson
loop = asyncio.get_event_loop()
@asyncio.coroutine
def go():
gibson = yield from create_gibson('/tmp/aio.sock', loop=loop)
# set value
yield from gibson.set(b'foo', b'bar', 7)
# get value
result = yield from gibson.get(b'foo')
print(result)
# delete value
yield from gibson.delete(b'foo')
loop.run_until_complete(go())
Requirements
Other Python client
License
The aiogibson is offered under MIT license.
Changes
0.1.0 (2014-08-17)
Initial release;
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aiogibson-0.1.0.tar.gz
(10.2 kB
view details)
File details
Details for the file aiogibson-0.1.0.tar.gz
.
File metadata
- Download URL: aiogibson-0.1.0.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ca7d1f1fa7cd4d9c4d7fac21530567341341f4ae380505dfbe7059c118d0864 |
|
MD5 | 058fbdef6ea72315f9b5b6ed994de591 |
|
BLAKE2b-256 | 8f5eec3b8c9d617842f041b5a02c0c75e1df39e8fd5f05937f50bccb7ebaf9c6 |