Skip to main content

Simple ActiveRecord pattern for Redis

Project description

# Example:

from active_redis import ActiveRedis, ActiveRedisModel, UUIDGenerator

class Movie(ActiveRedisModel):
stored_attrs = ['title', 'year', 'author']

def __init__(self, uuid, title, year, author):
self.uuid = uuid
self.title, self.year, self.author = title, year, author


if __name__ == '__main__':
ActiveRedis.config = {
'connexion': {'db': 3},
'namespace_prefix': 'mycinema'
}

assert Movie.delete_all()
assert 0, Movie.count()

topgun = Movie(UUIDGenerator.generate(), 'TopGun', 1987, 'Tony S.')
assert topgun.save()

titanic = Movie(UUIDGenerator.generate(), 'Titanic', 1997, 'James C.')
assert titanic.save()

topgun.update_attr('title', 'Top Gun')
assert 'Top Gun', Movie.find(topgun.uuid).title

assert 2, Movie.count()
assert 2, len(Movie.find_all())

m = Movie.find(topgun.uuid)
m.delete()

assert 1, Movie.count()
assert 1, len(Movie.find_all())

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

active_redis-0.0.2.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

active_redis-0.0.2.macosx-10.4-x86_64.exe (67.1 kB view hashes)

Uploaded Source

Supported by

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