Skip to main content

Simple and extensible cache for python.

Project description

Simple cache based on the redis and cPickle for Python.

# Installation:

pip install ptcache

# Usage:

## as a decorator for function

### use redis

```python
from ptcache import RedisCache, Cache

cache = Cache(RedisCache(password='***'))


@cache.cached(60*10)
def test(a, b, name='age'):
return {"sum": a+b, "name": name}


@cache.uncache(test, kwarg_names=['name'])
def update_test(a, b, name="age"):
return {"sum": a*b, "name": name}


# computed and stored on cache
test(1, 2)

# update and remove cache for function test
update_test(1, 2)

# remove cache manually
cache.remove_cache(test, 1, 2)
cache.remove_cache(test, 1, 2, name="age")

```

### use python object

```python
from ptcache import SimpleCache, Cache
import json

cache = Cache(SimpleCache(pickle=json)) # use json, default is cPickle


@cache.cached(60*10)
def test(a, b, name='age'):
return {"sum": a+b, "name": name}


@cache.uncache(test, kwarg_names=['name'])
def update_test(a, b, name="age"):
return {"sum": a*b, "name": name}


print(test(1, 2))
print(test(1, 2))
```

## as object

```python
from ptcache import RedisCache, SimpleCache

# use redis
cache = RedisCache(password='***')

cache.set('aaa', {'name':'fang', 'age':10, 'money': 12.03}, 60)
print(cache.exists('aaa'))
print(cache.get('aaa'))
print(cache.ttl('aaa'))

cache.delete('aaa')

print('*' * 10)

# use SimpleCache
cache = SimpleCache(timeout=20, threshold=5)
for x in range(6):
cache.set(x, x)

print(cache.count())

for x in range(6):
print(cache.exists(x))
print(cache.ttl(x))
print(cache.get(x))
cache.delete(x)
print('\n')

```

Changelog
=========

1.0.0
-----

Highlights:

* Init

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

ptcache-1.0.0.tar.gz (4.1 kB view details)

Uploaded Source

File details

Details for the file ptcache-1.0.0.tar.gz.

File metadata

  • Download URL: ptcache-1.0.0.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for ptcache-1.0.0.tar.gz
Algorithm Hash digest
SHA256 4ffcc7ac58530dd8373391003502fac61fba77772b51bf0764fc83b1ffd0f43b
MD5 c8134ab20a1b5594bfaf93e204e2cc74
BLAKE2b-256 9f307f1a65089561964952344e3d28467ece10803f32268e31c8ad908f3cabac

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page