标签: shell batch-file insert
我想通过使用shell脚本将大量数据插入memecacheq,看起来像下面的命令不起作用:
插入数据“123”,队列名称为“test_key”
echo -e 'set test_key 0 0 3\n123' | nc localhost 22201
memcacheq正在本地主机和侦听端口22201上运行。
但是,如果我喜欢下面的内容,它会起作用:
telnet localhost 22201
然后
set test_key 0 0 3 123