README.md
Project description
Cache-Client
Cache-Client
most of the time, you need cache to some kind of backend to speed up your app.
this framework add these tools to free you from write these.
it also has auto update function to free you from manually update something.
Usage
from logging import StreamHandler
import asyncio
import time
from cache_client.client.common import SimpleClient
import logging
logger = logging.getLogger(__package__)
handler = StreamHandler()
handler.setLevel(logging.DEBUG)
logger.addHandler(handler)
logger.setLevel(logging.DEBUG)
mysql_conf = {
'host': '127.0.0.1',
'port': 3306,
'db': 'test',
'user': 'test',
'password': 'test'
}
redis_conf = {
'redis_host': '127.0.0.1',
'redis_port': 6379,
'redis_secret': '',
}
client = SimpleClient(backend_conf=mysql_conf,
cache_conf=redis_conf,
update_interval=30)
async def test():
await client.connect()
expire_at = int(time.time()) + 100
for i in range(10):
start = int(time.time()*1000)
result = await client.get(
database='sku',
key='select sku_id,description,price,status from sku',
expire_at=expire_at,
update_interval=100)
end = int(time.time()*1000)
print('running time', end-start)
print(result, 'result', i)
loop = asyncio.get_event_loop()
# loop.run_until_complete(test())
loop.create_task(test())
loop.run_forever()
Coding
- like this project, star it
- any suggestion is welcome
- this project is under MIT lisense
more docs are writing.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file cache_client-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: cache_client-1.0.0-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5282bf8384fae790498e64f00ddb49bba2c8e4fa97d2e30b5e547e9fab7d6dca |
|
MD5 | 5f997227002827e102697a5539fda156 |
|
BLAKE2b-256 | 5027f8d5cef5b72e1bd5805c3fe35bba2cb563e89e8b2629e7cfdf41209844ff |