├── .gitignore ├── CONVERTING_TO_5.0.0 ├── Changelog ├── IndexedRedis ├── IRQueryableList.py ├── __init__.py ├── compat_convert.py ├── compat_str.py ├── deprecated.py ├── fields │ ├── FieldValueTypes.py │ ├── __init__.py │ ├── b64.py │ ├── bytes_field.py │ ├── chain.py │ ├── classic.py │ ├── compressed.py │ ├── fixedpoint.py │ ├── foreign.py │ ├── null.py │ ├── pickle_field.py │ ├── raw.py │ └── unicode_field.py └── utils.py ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── doc ├── IndexedRedis.IRQueryableList.html ├── IndexedRedis.compat_convert.html ├── IndexedRedis.compat_str.html ├── IndexedRedis.deprecated.html ├── IndexedRedis.fields.FieldValueTypes.html ├── IndexedRedis.fields.b64.html ├── IndexedRedis.fields.bytes_field.html ├── IndexedRedis.fields.chain.html ├── IndexedRedis.fields.classic.html ├── IndexedRedis.fields.compressed.html ├── IndexedRedis.fields.fixedpoint.html ├── IndexedRedis.fields.foreign.html ├── IndexedRedis.fields.html ├── IndexedRedis.fields.null.html ├── IndexedRedis.fields.pickle_field.html ├── IndexedRedis.fields.raw.html ├── IndexedRedis.fields.unicode_field.html ├── IndexedRedis.html ├── IndexedRedis.timed.html ├── IndexedRedis.utils.html └── index.html ├── example.py ├── mkdoc.sh ├── patches ├── README ├── apply_patch.sh ├── extra_lua_filters.patch ├── factory.patch └── single_pipeline_foreign.patch ├── requirements.txt ├── setup.py └── tests ├── .gitignore ├── README ├── UnitTests ├── TestProperties.py ├── test_CopyModel.py ├── test_HashedIndexes.py ├── test_IRBase64Field.py ├── test_IRBytesField.py ├── test_IRCompressedField.py ├── test_IRDefaultValues.py ├── test_IRField.py ├── test_IRFieldChain.py ├── test_IRFixedPointField.py ├── test_IRForeignLinkField.py ├── test_IRForeignMultiLinkField.py ├── test_IRPickleField.py ├── test_IRRawField.py ├── test_IRUnicodeField.py ├── test_ModelDiff.py ├── test_ModelValidation.py └── test_SimpleSetAndGet.py ├── runTests.py └── simple ├── .gitignore ├── README ├── RUN_ME.py ├── example.py ├── testChain.py ├── testCompress.py ├── testDatetime.py ├── testFixedPoint.py ├── testJson.py ├── testPickle.py ├── testRaw.py ├── testUnicode.py └── testUnicode64.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/.gitignore -------------------------------------------------------------------------------- /CONVERTING_TO_5.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/CONVERTING_TO_5.0.0 -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/Changelog -------------------------------------------------------------------------------- /IndexedRedis/IRQueryableList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/IRQueryableList.py -------------------------------------------------------------------------------- /IndexedRedis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/__init__.py -------------------------------------------------------------------------------- /IndexedRedis/compat_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/compat_convert.py -------------------------------------------------------------------------------- /IndexedRedis/compat_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/compat_str.py -------------------------------------------------------------------------------- /IndexedRedis/deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/deprecated.py -------------------------------------------------------------------------------- /IndexedRedis/fields/FieldValueTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/FieldValueTypes.py -------------------------------------------------------------------------------- /IndexedRedis/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/__init__.py -------------------------------------------------------------------------------- /IndexedRedis/fields/b64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/b64.py -------------------------------------------------------------------------------- /IndexedRedis/fields/bytes_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/bytes_field.py -------------------------------------------------------------------------------- /IndexedRedis/fields/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/chain.py -------------------------------------------------------------------------------- /IndexedRedis/fields/classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/classic.py -------------------------------------------------------------------------------- /IndexedRedis/fields/compressed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/compressed.py -------------------------------------------------------------------------------- /IndexedRedis/fields/fixedpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/fixedpoint.py -------------------------------------------------------------------------------- /IndexedRedis/fields/foreign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/foreign.py -------------------------------------------------------------------------------- /IndexedRedis/fields/null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/null.py -------------------------------------------------------------------------------- /IndexedRedis/fields/pickle_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/pickle_field.py -------------------------------------------------------------------------------- /IndexedRedis/fields/raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/raw.py -------------------------------------------------------------------------------- /IndexedRedis/fields/unicode_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/fields/unicode_field.py -------------------------------------------------------------------------------- /IndexedRedis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/IndexedRedis/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/README.rst -------------------------------------------------------------------------------- /doc/IndexedRedis.IRQueryableList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.IRQueryableList.html -------------------------------------------------------------------------------- /doc/IndexedRedis.compat_convert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.compat_convert.html -------------------------------------------------------------------------------- /doc/IndexedRedis.compat_str.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.compat_str.html -------------------------------------------------------------------------------- /doc/IndexedRedis.deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.deprecated.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.FieldValueTypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.FieldValueTypes.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.b64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.b64.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.bytes_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.bytes_field.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.chain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.chain.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.classic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.classic.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.compressed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.compressed.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.fixedpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.fixedpoint.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.foreign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.foreign.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.null.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.null.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.pickle_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.pickle_field.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.raw.html -------------------------------------------------------------------------------- /doc/IndexedRedis.fields.unicode_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.fields.unicode_field.html -------------------------------------------------------------------------------- /doc/IndexedRedis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.html -------------------------------------------------------------------------------- /doc/IndexedRedis.timed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.timed.html -------------------------------------------------------------------------------- /doc/IndexedRedis.utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/doc/IndexedRedis.utils.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- 1 | IndexedRedis.html -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/example.py -------------------------------------------------------------------------------- /mkdoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/mkdoc.sh -------------------------------------------------------------------------------- /patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/patches/README -------------------------------------------------------------------------------- /patches/apply_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/patches/apply_patch.sh -------------------------------------------------------------------------------- /patches/extra_lua_filters.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/patches/extra_lua_filters.patch -------------------------------------------------------------------------------- /patches/factory.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/patches/factory.patch -------------------------------------------------------------------------------- /patches/single_pipeline_foreign.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/patches/single_pipeline_foreign.patch -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | redis 2 | QueryableList 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | GoodTests.py 2 | -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/README -------------------------------------------------------------------------------- /tests/UnitTests/TestProperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/TestProperties.py -------------------------------------------------------------------------------- /tests/UnitTests/test_CopyModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_CopyModel.py -------------------------------------------------------------------------------- /tests/UnitTests/test_HashedIndexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_HashedIndexes.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRBase64Field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRBase64Field.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRBytesField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRBytesField.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRCompressedField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRCompressedField.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRDefaultValues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRDefaultValues.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRField.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRFieldChain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRFieldChain.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRFixedPointField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRFixedPointField.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRForeignLinkField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRForeignLinkField.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRForeignMultiLinkField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRForeignMultiLinkField.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRPickleField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRPickleField.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRRawField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRRawField.py -------------------------------------------------------------------------------- /tests/UnitTests/test_IRUnicodeField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_IRUnicodeField.py -------------------------------------------------------------------------------- /tests/UnitTests/test_ModelDiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_ModelDiff.py -------------------------------------------------------------------------------- /tests/UnitTests/test_ModelValidation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_ModelValidation.py -------------------------------------------------------------------------------- /tests/UnitTests/test_SimpleSetAndGet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/UnitTests/test_SimpleSetAndGet.py -------------------------------------------------------------------------------- /tests/runTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/runTests.py -------------------------------------------------------------------------------- /tests/simple/.gitignore: -------------------------------------------------------------------------------- 1 | IndexedRedis 2 | -------------------------------------------------------------------------------- /tests/simple/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/simple/README -------------------------------------------------------------------------------- /tests/simple/RUN_ME.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/simple/RUN_ME.py -------------------------------------------------------------------------------- /tests/simple/example.py: -------------------------------------------------------------------------------- 1 | ../../example.py -------------------------------------------------------------------------------- /tests/simple/testChain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/simple/testChain.py -------------------------------------------------------------------------------- /tests/simple/testCompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/simple/testCompress.py -------------------------------------------------------------------------------- /tests/simple/testDatetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/simple/testDatetime.py -------------------------------------------------------------------------------- /tests/simple/testFixedPoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/simple/testFixedPoint.py -------------------------------------------------------------------------------- /tests/simple/testJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/simple/testJson.py -------------------------------------------------------------------------------- /tests/simple/testPickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/simple/testPickle.py -------------------------------------------------------------------------------- /tests/simple/testRaw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/simple/testRaw.py -------------------------------------------------------------------------------- /tests/simple/testUnicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/simple/testUnicode.py -------------------------------------------------------------------------------- /tests/simple/testUnicode64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kata198/indexedredis/HEAD/tests/simple/testUnicode64.py --------------------------------------------------------------------------------