├── LICENSE ├── README.md ├── README_ko.md ├── requirements.txt ├── setup.cfg ├── setup.py └── tiny_elephant ├── __init__.py ├── in_memory_cluster.py ├── in_memory_cluster_test.py └── renappy.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-jelly/tiny-elephant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-jelly/tiny-elephant/HEAD/README.md -------------------------------------------------------------------------------- /README_ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-jelly/tiny-elephant/HEAD/README_ko.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-snappy 2 | redis 3 | datasketch 4 | simplejson -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-jelly/tiny-elephant/HEAD/setup.py -------------------------------------------------------------------------------- /tiny_elephant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tiny_elephant/in_memory_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-jelly/tiny-elephant/HEAD/tiny_elephant/in_memory_cluster.py -------------------------------------------------------------------------------- /tiny_elephant/in_memory_cluster_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-jelly/tiny-elephant/HEAD/tiny_elephant/in_memory_cluster_test.py -------------------------------------------------------------------------------- /tiny_elephant/renappy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-jelly/tiny-elephant/HEAD/tiny_elephant/renappy.py --------------------------------------------------------------------------------