2011-04-08 13:35:32 -04:00
2011-04-08 13:35:19 -04:00
2011-04-08 13:35:19 -04:00
2011-04-08 13:35:32 -04:00
2011-04-08 13:19:58 -04:00

Redi: Redis Awesomeness
=======================

**Warning:** this may or may not be a good idea.

I'm certainly not an efficiency expert. I just want to be able to do things easily.


Ideas
-----

- Offer limited type-specific search.
- Treat objects as dicts.
- Offer fileobject-like interface to values
    + useful for iterating


Everything should be serialized to JSON by default. Configurable.


Example usage ::

    from redisalchemy import RList, RSet, RString, search, find

    students = RList('dashboard:students')

    students.append(dict(blah='blah'))
    students.append(someobject)

    students.contain('value')
    #


    students.any_contain('value')
    #

    students.any_contain_any('value')
    # list of lists
    # list of dicts (keys)


    for (i, student) in enumerate(students):
        students[i] = srcub(student)


S
Description
No description provided
Readme ISC 151 KiB
Languages
Python 100%