Metadata-Version: 2.1
Name: redis-migrate
Version: 1.0.0
Summary: A simple command line tool for redis data migration
Home-page: https://github.com/mingrammer/redis-migrate
Author: mingrammer
Author-email: mingrammer@gmail.com
License: MIT
Description: 
        # Redis Migrate
        
        Simple command line tool for redis data migration (minimal functionality)
        
        It is useful when you're not able to use `slaveof` command (e.g. `slaveof` command is not available in ElastiCache) or should migrate from multiple redis servers to a single server.
        
        ## Installation
        
        ```shell
        pip install redis-migrate
        ```
        
        ## Usage
        
        ```console
        # Basic usage
        redis-migrate srchost[:port][/db] dsthost[:port][/db] [--all-keys=false] [--procs=1]
        
        # Migrate the keys from db 0 of source host to db 1 of destination host.
        redis-migrate srchost dsthost/1
        
        # If you don't want to replace existing keys, use `--no-replace` option.
        redis-migrate srchost dsthost/1 --no-replace
        
        # Migrate the entire keys from source host at 6380 port to destination host.
        # It will ignore `/db` number.
        redis-migrate srchost:6380 dsthost --all-keys
        
        # You can also set process number to use multiprocessing for speed up.
        # It works only with `--all-keys`.
        redis-migrate srchost dsthost --all-keys --procs 4
        ```
        
        ## License
        
        MIT
        >>>>>>> Stashed changes
        
Keywords: redis migrate
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Terminals
Requires-Python: >=3
Description-Content-Type: text/markdown
