File: PKG-INFO

package info (click to toggle)
django-haystack-redis 0.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 96 kB
  • sloc: python: 109; makefile: 3
file content (45 lines) | stat: -rw-r--r-- 1,659 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Metadata-Version: 2.1
Name: haystack-redis
Version: 0.0.1
Summary: Use redis as a persistence layer for Whoosh and Haystack
Home-page: https://github.com/steinbro/haystack-redis
Author: Jökull Sólberg Auðunsson
Author-email: jokull@solberg.is
Maintainer: Daniel W. Steinbrook
Maintainer-email: steinbro@post.harvard.edu
License: BSD
Description: 
        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.0alpha 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. The ``REDISTOGO_URL`` environment variable is read,
        falling back to the localhost default port.
        
        Usage
        -----
        
        Configure your Haystack connections in ``settings.py``::
        
            import tempfile
            HAYSTACK_CONNECTIONS = {
                'default': {
                    'ENGINE': 'haystack_redis.RedisEngine',
                    'PATH': tempfile.gettempdir(),
                },
            }
        
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules