METADATA 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. Metadata-Version: 2.0
  2. Name: rdbtools
  3. Version: 0.1.12
  4. Summary: Utilities to convert Redis RDB files to JSON or SQL formats
  5. Home-page: https://github.com/sripathikrishnan/redis-rdb-tools
  6. Author: Sripathi Krishnan, Redis Labs
  7. Author-email: oss@redislabs.com
  8. License: MIT
  9. Download-URL: https://github.com/sripathikrishnan/redis-rdb-tools/archive/rdbtools-0.1.12.tar.gz
  10. Keywords: Redis,RDB,Export,Dump,Memory Profiler
  11. Platform: UNKNOWN
  12. Classifier: Development Status :: 5 - Production/Stable
  13. Classifier: Environment :: Console
  14. Classifier: Intended Audience :: Developers
  15. Classifier: License :: OSI Approved :: MIT License
  16. Classifier: Operating System :: OS Independent
  17. Classifier: Programming Language :: Python
  18. Requires-Dist: redis
  19. Parse Redis dump.rdb files, Analyze Memory, and Export Data to JSON
  20. Rdbtools is a parser for Redis' dump.rdb files. The parser generates events similar to an xml sax parser, and is very efficient memory wise.
  21. In addition, rdbtools provides utilities to :
  22. 1. Generate a Memory Report of your data across all databases and keys
  23. 2. Convert dump files to JSON
  24. 3. Compare two dump files using standard diff tools
  25. Rdbtools is written in Python, though there are similar projects in other languages. See FAQs (https://github.com/sripathikrishnan/redis-rdb-tools/wiki/FAQs) for more information.