Skip to content

Simple cache management to make your life easy ⚡️

License

Notifications You must be signed in to change notification settings

JeremyAndress/arsene

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arsene

Simple cache management to make your life easy.

Test MIT pypy


Requirements

  • Python🐍 3.6+

Installation

pip install arsene

Quick Start 🚀

For the tutorial, you must install redis as dependency

pip install arsene[redis]

The simplest Arsene setup looks like this:

from datetime import datetime
from arsene import Arsene, RedisModel

redis = RedisModel(host='localhost')

arsene = Arsene(redis_connection=redis)


@arsene.cache(key='my_secret_key', expire=2)
def get_user():
    return {
        'username': 'jak',
        'last_session': datetime(year=1999, month=2, day=3)
    }


# return and writes response to the cache
get_user()

# reads response to the cache
get_user()
# Response: {'username': 'jak', 'last_session': datetime.datetime(1999, 2, 3, 0, 0)}

# reads response to the cache
arsene.get(key='my_secret_key')

# delete key to the cache
arsene.delete(key='my_secret_key')
arsene.get(key='my_secret_key')
# Response: None