Skip to main content

Stores a model as a dictionary

Project description

ModelDict is a very efficient way to store things like settings in your database. The entire model is transformed into a dictionary (lazily) as well as stored in your cache. It’s invalidated only when it needs to be (both in process and based on CACHE_BACKEND).

Quick example usage. More docs to come (maybe?):

class Setting(models.Model):
    key = models.CharField(max_length=32)
    value = models.CharField(max_length=200)
settings = ModelDict(Setting, key='key', value='value', instances=False)

# access missing value
settings['foo']
>>> KeyError

# set the value
settings['foo'] = 'hello'

# fetch the current value using either method
Setting.objects.get(key='foo').value
>>> 'hello'

settings['foo']
>>> 'hello'

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

django-modeldict-1.3.5.tar.gz (9.8 kB view details)

Uploaded Source

File details

Details for the file django-modeldict-1.3.5.tar.gz.

File metadata

File hashes

Hashes for django-modeldict-1.3.5.tar.gz
Algorithm Hash digest
SHA256 1332486b8ff9b670d1f956a9c582f1b6794f8810f0c5a58a37fccdfb574a59ce
MD5 472dc23f6ea20b4ce3f857f12e71af35
BLAKE2b-256 9ca47330d1c83ea7103a66d62059986f6a413bf09e7e721bf46912d2db68d0f1

See more details on using hashes here.

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