Sider Documentation - Read the Docs

Sider Documentation

Release 0.3.2 Hong Minhee

January 13, 2016

Contents

1 References

3

1.1 sider -- Sider . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3

2 Further reading

39

2.1 Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39

2.2 Documentation guides . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45

2.3 To do list . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47

2.4 Roadmap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47

2.5 Sider Changelog . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48

3 Open source

51

4 Community

53

5 Indices and tables

55

Python Module Index

57

i

ii

Sider Documentation, Release 0.3.2

Sider is a persistent object library based on Redis. This is heavily under development currently, but you can check the future roadmap if you want.

>>> from sider.types import Set, Integer >>> s = session.get('my_set', Set(Integer)) >>> 3 in s # SISMEMBER 3 True >>> 4 in s # SISMEMBER 4 False >>> s2 = session.get('another_set', Set(Integer)) >>> s & s2 # SINTER my_set another_set set([2, 3]) >>> s >>> s2 >>> session.get('my_int_key', Integer) 1234

You can install it from PyPI:

$ pip install Sider $ python -m sider.version 0.2.0

What was the name `Sider' originated from?:

>>> 'redis'[::-1] 'sider'

Contents

1

................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download