Lua – Simple method to use Memcache

Published on Author gryzli

If you need fast and lightweight method of connecting with Memcache daemon, you can do it by just using the ‘socket’ module and open a TCP connection to the Memcache daemon.  After you have your connection done to Memcache, you could issue all kind of commands for getting/storing information.    Code #!/usr/bin/lua require ‘socket’ function… Continue reading Lua – Simple method to use Memcache