gitextract_y_mdrj8b/ ├── .gitignore ├── ChangeLog ├── LICENSE ├── Makefile.am ├── NOTICE ├── README.md ├── conf/ │ └── vire.conf ├── configure.ac ├── dep/ │ ├── .gitignore │ ├── Makefile.am │ ├── ae/ │ │ ├── Makefile.am │ │ ├── ae.c │ │ ├── ae.h │ │ ├── ae_epoll.c │ │ ├── ae_evport.c │ │ ├── ae_kqueue.c │ │ └── ae_select.c │ ├── darray/ │ │ ├── Makefile.am │ │ ├── darray.c │ │ └── darray.h │ ├── dhashkit/ │ │ ├── Makefile.am │ │ ├── dcrc16.c │ │ ├── dcrc32.c │ │ ├── dfnv.c │ │ ├── dhashkit.h │ │ ├── dhsieh.c │ │ ├── djenkins.c │ │ ├── dketama.c │ │ ├── dmd5.c │ │ ├── dmodula.c │ │ ├── dmurmur.c │ │ ├── done_at_a_time.c │ │ ├── drandom.c │ │ └── dsha1.c │ ├── dlist/ │ │ ├── Makefile.am │ │ ├── dlist.c │ │ ├── dlist.h │ │ ├── dlockqueue.c │ │ ├── dlockqueue.h │ │ ├── dmtqueue.c │ │ └── dmtqueue.h │ ├── dmalloc/ │ │ ├── Makefile.am │ │ ├── dmalloc.c │ │ └── dmalloc.h │ ├── himemcached-0.1.0/ │ │ ├── Makefile.am │ │ ├── himcdep/ │ │ │ ├── sds.c │ │ │ └── sds.h │ │ ├── himcread.c │ │ ├── himcread.h │ │ ├── himemcached.c │ │ └── himemcached.h │ ├── hiredis-0.13.3/ │ │ └── .gitignore │ ├── jemalloc-4.2.0/ │ │ └── .gitignore │ ├── jemalloc-4.2.0.tar.bz2 │ ├── sds/ │ │ ├── Makefile.am │ │ ├── sds.c │ │ ├── sds.h │ │ └── sdsalloc.h │ └── util/ │ ├── Makefile.am │ ├── dlog.c │ ├── dlog.h │ ├── dspecialconfig.h │ ├── dutil.c │ └── dutil.h ├── m4/ │ └── .gitignore ├── notes/ │ ├── c-styleguide.txt │ ├── debug.txt │ └── socket.txt ├── scripts/ │ └── .gitignore ├── src/ │ ├── Makefile.am │ ├── vr.c │ ├── vr_aof.c │ ├── vr_aof.h │ ├── vr_backend.c │ ├── vr_backend.h │ ├── vr_bitops.c │ ├── vr_bitops.h │ ├── vr_block.c │ ├── vr_block.h │ ├── vr_client.c │ ├── vr_client.h │ ├── vr_command.c │ ├── vr_command.h │ ├── vr_conf.c │ ├── vr_conf.h │ ├── vr_connection.c │ ├── vr_connection.h │ ├── vr_core.c │ ├── vr_core.h │ ├── vr_db.c │ ├── vr_db.h │ ├── vr_dict.c │ ├── vr_dict.h │ ├── vr_eventloop.c │ ├── vr_eventloop.h │ ├── vr_hyperloglog.c │ ├── vr_hyperloglog.h │ ├── vr_intset.c │ ├── vr_intset.h │ ├── vr_listen.c │ ├── vr_listen.h │ ├── vr_lzf.h │ ├── vr_lzfP.h │ ├── vr_lzf_c.c │ ├── vr_lzf_d.c │ ├── vr_master.c │ ├── vr_master.h │ ├── vr_multi.c │ ├── vr_multi.h │ ├── vr_notify.c │ ├── vr_notify.h │ ├── vr_object.c │ ├── vr_object.h │ ├── vr_pubsub.c │ ├── vr_pubsub.h │ ├── vr_quicklist.c │ ├── vr_quicklist.h │ ├── vr_rbtree.c │ ├── vr_rbtree.h │ ├── vr_rdb.c │ ├── vr_rdb.h │ ├── vr_replication.c │ ├── vr_replication.h │ ├── vr_scripting.c │ ├── vr_scripting.h │ ├── vr_server.c │ ├── vr_server.h │ ├── vr_signal.c │ ├── vr_signal.h │ ├── vr_slowlog.c │ ├── vr_slowlog.h │ ├── vr_stats.c │ ├── vr_stats.h │ ├── vr_t_hash.c │ ├── vr_t_hash.h │ ├── vr_t_list.c │ ├── vr_t_list.h │ ├── vr_t_set.c │ ├── vr_t_set.h │ ├── vr_t_string.c │ ├── vr_t_string.h │ ├── vr_t_zset.c │ ├── vr_t_zset.h │ ├── vr_thread.c │ ├── vr_thread.h │ ├── vr_util.c │ ├── vr_util.h │ ├── vr_worker.c │ ├── vr_worker.h │ ├── vr_ziplist.c │ ├── vr_ziplist.h │ ├── vr_zipmap.c │ └── vr_zipmap.h ├── tests/ │ ├── .gitignore │ ├── Makefile.am │ ├── vrabtest.c │ ├── vrabtest.h │ ├── vrt_backend.c │ ├── vrt_backend.h │ ├── vrt_benchmark.c │ ├── vrt_check_data.c │ ├── vrt_check_data.h │ ├── vrt_dispatch_data.c │ ├── vrt_dispatch_data.h │ ├── vrt_produce_data.c │ ├── vrt_produce_data.h │ ├── vrt_public.c │ ├── vrt_public.h │ ├── vrt_simple.c │ ├── vrt_simple.h │ ├── vrt_util.c │ ├── vrt_util.h │ └── vrtest.c └── tools/ └── .gitignore