├── Makefile ├── README.md ├── crmInboxTrigger.sql ├── install.md ├── lib_mysqludf_redis.c ├── lib_mysqludf_redis.h └── test ├── install_json_udf.sql ├── install_redis_udf.sql └── test_redis_udf.sql /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnbreaks/mysql2redis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnbreaks/mysql2redis/HEAD/README.md -------------------------------------------------------------------------------- /crmInboxTrigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnbreaks/mysql2redis/HEAD/crmInboxTrigger.sql -------------------------------------------------------------------------------- /install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnbreaks/mysql2redis/HEAD/install.md -------------------------------------------------------------------------------- /lib_mysqludf_redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnbreaks/mysql2redis/HEAD/lib_mysqludf_redis.c -------------------------------------------------------------------------------- /lib_mysqludf_redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnbreaks/mysql2redis/HEAD/lib_mysqludf_redis.h -------------------------------------------------------------------------------- /test/install_json_udf.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnbreaks/mysql2redis/HEAD/test/install_json_udf.sql -------------------------------------------------------------------------------- /test/install_redis_udf.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnbreaks/mysql2redis/HEAD/test/install_redis_udf.sql -------------------------------------------------------------------------------- /test/test_redis_udf.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnbreaks/mysql2redis/HEAD/test/test_redis_udf.sql --------------------------------------------------------------------------------