ledisdb/tools/redis_import
holys 5ce968006c update test 2014-08-11 10:10:36 +08:00
..
README.md update readme 2014-08-11 09:53:28 +08:00
redis_import.py update readme 2014-08-11 09:47:44 +08:00
test.py update test 2014-08-11 10:10:36 +08:00

README.md

Notice

  1. The tool doesn't support set data type.
  2. The tool doesn't support bitmap data type.
  3. Our zset use integer instead of double, so the zset float score in Redis will be converted to integer.
  4. Only Support Redis version greater than 2.8.0, because we use scan command to scan data. Also, you need redis-py greater than 2.9.0.

Usage

   $ python redis_import.py redis_host redis_port redis_db ledis_host ledis_port [True]

The option True means convert set to zset or not, if not, set it to False.

We will use the same db index as redis. That's to say, data in redis[0] will be transfer to ledisdb[0].