2014-08-08 06:40:52 +04:00
|
|
|
## Notice
|
|
|
|
|
2014-08-08 14:37:23 +04:00
|
|
|
1. The tool doesn't support `set` data type.
|
|
|
|
2. The tool doesn't support `bitmap` data type.
|
2014-08-08 14:33:45 +04:00
|
|
|
2. Our `zset` use integer instead of double, so the zset float score in Redis
|
2014-08-08 06:40:52 +04:00
|
|
|
will be **converted to integer**.
|
|
|
|
3. Only Support Redis version greater than `2.8.0`, because we use `scan` command to scan data.
|
2014-08-08 14:37:23 +04:00
|
|
|
Also, you need `redis-py` greater than `2.9.0`.
|
2014-08-08 06:40:52 +04:00
|
|
|
|
2014-08-08 14:37:23 +04:00
|
|
|
|
|
|
|
|
|
|
|
## 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`.
|
|
|
|
|
2014-08-11 05:53:28 +04:00
|
|
|
We will use the same db index as redis. That's to say, data in redis[0] will be transfer to ledisdb[0].
|