Skip to content

steinbro/haystack-redis

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

haystack-redis

A Whoosh storage engine using redis for persistence. A Haystack SearchBackend subclass is also provided. Normally the STORAGE key could just be set but Haystack 2.0.0beta is only aware of file and ram backends.

This is especially useful for small sites hosted on Heroku, which does not allow writing to local disk..

Code is based on maxpert’s snippet (see blog post)

Usage

Configure your Haystack connections in settings.py:

import tempfile
HAYSTACK_CONNECTIONS = {
    'default': {
        'ENGINE': 'haystack_redis.RedisEngine',
        'PATH': 'redis://127.0.0.1:6379',
    },
}

Installation

$ pip install haystack-redis

About

Simple solution to get Haystack running on a Heroku instance without external services

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%