├── .gitignore ├── ChangeLog ├── LICENSE ├── Makefile.am ├── README.md ├── configure.ac ├── dep ├── .gitignore ├── Makefile.am ├── jemalloc-4.0.4.tar.bz2 └── jemalloc-4.0.4 │ └── .gitignore ├── m4 └── .gitignore ├── nodes ├── .gitignore └── rmt命令支持详情.xlsx ├── rmt.conf ├── src ├── Makefile.am ├── ae │ ├── Makefile.am │ ├── ae.c │ ├── ae.h │ ├── ae_epoll.c │ ├── ae_evport.c │ ├── ae_kqueue.c │ └── ae_select.c ├── intset │ ├── Makefile.am │ ├── intset.c │ └── intset.h ├── lzf │ ├── Makefile.am │ ├── lzf.h │ ├── lzfP.h │ ├── lzf_c.c │ └── lzf_d.c ├── rmt.c ├── rmt_array.c ├── rmt_array.h ├── rmt_check.c ├── rmt_command.c ├── rmt_command.h ├── rmt_conf.c ├── rmt_conf.h ├── rmt_config.h ├── rmt_connect.c ├── rmt_connect.h ├── rmt_core.c ├── rmt_core.h ├── rmt_dict.c ├── rmt_dict.h ├── rmt_hash.c ├── rmt_hash.h ├── rmt_list.c ├── rmt_list.h ├── rmt_locklist.c ├── rmt_locklist.h ├── rmt_log.c ├── rmt_log.h ├── rmt_mbuf.c ├── rmt_mbuf.h ├── rmt_message.c ├── rmt_message.h ├── rmt_mttlist.c ├── rmt_mttlist.h ├── rmt_net.c ├── rmt_net.h ├── rmt_option.c ├── rmt_option.h ├── rmt_redis.c ├── rmt_redis.h ├── rmt_sds.c ├── rmt_sds.h ├── rmt_testinsert.c ├── rmt_unlocklist.c ├── rmt_unlocklist.h ├── rmt_util.c ├── rmt_util.h ├── ziplist │ ├── Makefile.am │ ├── ziplist.c │ └── ziplist.h └── zipmap │ ├── Makefile.am │ ├── zipmap.c │ └── zipmap.h └── test └── .gitignore /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/configure.ac -------------------------------------------------------------------------------- /dep/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dep/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/dep/Makefile.am -------------------------------------------------------------------------------- /dep/jemalloc-4.0.4.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/dep/jemalloc-4.0.4.tar.bz2 -------------------------------------------------------------------------------- /dep/jemalloc-4.0.4/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nodes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nodes/rmt命令支持详情.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/nodes/rmt命令支持详情.xlsx -------------------------------------------------------------------------------- /rmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/rmt.conf -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/ae/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/ae/Makefile.am -------------------------------------------------------------------------------- /src/ae/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/ae/ae.c -------------------------------------------------------------------------------- /src/ae/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/ae/ae.h -------------------------------------------------------------------------------- /src/ae/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/ae/ae_epoll.c -------------------------------------------------------------------------------- /src/ae/ae_evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/ae/ae_evport.c -------------------------------------------------------------------------------- /src/ae/ae_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/ae/ae_kqueue.c -------------------------------------------------------------------------------- /src/ae/ae_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/ae/ae_select.c -------------------------------------------------------------------------------- /src/intset/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/intset/Makefile.am -------------------------------------------------------------------------------- /src/intset/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/intset/intset.c -------------------------------------------------------------------------------- /src/intset/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/intset/intset.h -------------------------------------------------------------------------------- /src/lzf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/lzf/Makefile.am -------------------------------------------------------------------------------- /src/lzf/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/lzf/lzf.h -------------------------------------------------------------------------------- /src/lzf/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/lzf/lzfP.h -------------------------------------------------------------------------------- /src/lzf/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/lzf/lzf_c.c -------------------------------------------------------------------------------- /src/lzf/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/lzf/lzf_d.c -------------------------------------------------------------------------------- /src/rmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt.c -------------------------------------------------------------------------------- /src/rmt_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_array.c -------------------------------------------------------------------------------- /src/rmt_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_array.h -------------------------------------------------------------------------------- /src/rmt_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_check.c -------------------------------------------------------------------------------- /src/rmt_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_command.c -------------------------------------------------------------------------------- /src/rmt_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_command.h -------------------------------------------------------------------------------- /src/rmt_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_conf.c -------------------------------------------------------------------------------- /src/rmt_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_conf.h -------------------------------------------------------------------------------- /src/rmt_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_config.h -------------------------------------------------------------------------------- /src/rmt_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_connect.c -------------------------------------------------------------------------------- /src/rmt_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_connect.h -------------------------------------------------------------------------------- /src/rmt_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_core.c -------------------------------------------------------------------------------- /src/rmt_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_core.h -------------------------------------------------------------------------------- /src/rmt_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_dict.c -------------------------------------------------------------------------------- /src/rmt_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_dict.h -------------------------------------------------------------------------------- /src/rmt_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_hash.c -------------------------------------------------------------------------------- /src/rmt_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_hash.h -------------------------------------------------------------------------------- /src/rmt_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_list.c -------------------------------------------------------------------------------- /src/rmt_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_list.h -------------------------------------------------------------------------------- /src/rmt_locklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_locklist.c -------------------------------------------------------------------------------- /src/rmt_locklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_locklist.h -------------------------------------------------------------------------------- /src/rmt_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_log.c -------------------------------------------------------------------------------- /src/rmt_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_log.h -------------------------------------------------------------------------------- /src/rmt_mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_mbuf.c -------------------------------------------------------------------------------- /src/rmt_mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_mbuf.h -------------------------------------------------------------------------------- /src/rmt_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_message.c -------------------------------------------------------------------------------- /src/rmt_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_message.h -------------------------------------------------------------------------------- /src/rmt_mttlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_mttlist.c -------------------------------------------------------------------------------- /src/rmt_mttlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_mttlist.h -------------------------------------------------------------------------------- /src/rmt_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_net.c -------------------------------------------------------------------------------- /src/rmt_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_net.h -------------------------------------------------------------------------------- /src/rmt_option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_option.c -------------------------------------------------------------------------------- /src/rmt_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_option.h -------------------------------------------------------------------------------- /src/rmt_redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_redis.c -------------------------------------------------------------------------------- /src/rmt_redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_redis.h -------------------------------------------------------------------------------- /src/rmt_sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_sds.c -------------------------------------------------------------------------------- /src/rmt_sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_sds.h -------------------------------------------------------------------------------- /src/rmt_testinsert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_testinsert.c -------------------------------------------------------------------------------- /src/rmt_unlocklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_unlocklist.c -------------------------------------------------------------------------------- /src/rmt_unlocklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_unlocklist.h -------------------------------------------------------------------------------- /src/rmt_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_util.c -------------------------------------------------------------------------------- /src/rmt_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/rmt_util.h -------------------------------------------------------------------------------- /src/ziplist/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/ziplist/Makefile.am -------------------------------------------------------------------------------- /src/ziplist/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/ziplist/ziplist.c -------------------------------------------------------------------------------- /src/ziplist/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/ziplist/ziplist.h -------------------------------------------------------------------------------- /src/zipmap/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/zipmap/Makefile.am -------------------------------------------------------------------------------- /src/zipmap/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/zipmap/zipmap.c -------------------------------------------------------------------------------- /src/zipmap/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipshop/redis-migrate-tool/HEAD/src/zipmap/zipmap.h -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------