├── LICENSE ├── README.md ├── lua_scripts └── content.lua ├── nginx └── conf │ ├── fastcgi_params │ ├── nginx.conf │ └── vhosts │ └── lua_queue.com.conf ├── ngx_lua_php_queue.png └── php_scripts ├── config.php ├── cron_queue.php ├── index.html ├── queue.php ├── redisserver ├── APCObject.php ├── IKeyLocker.php ├── IMemcacheDecorator.php ├── IMemoryStorage.php ├── IRedisServer.php ├── KeyAutoUnlocker.php ├── MemcacheObject.php ├── MemcachedDecorator.php ├── MemcachedObject.php ├── MemoryObject.php ├── PhpRedisObject.php ├── README.md ├── RedisObject.php ├── RedisServer.php ├── Shm │ ├── DummyMutex.php │ ├── IMutex.php │ ├── ISingleMemory.php │ ├── MultiAccess.php │ ├── ReadOnlyAccess.php │ ├── SHMObject.php │ ├── ShmMem.php │ └── SingleMemory.php ├── Tests │ ├── TestMemoryObject.php │ └── TestRedisServer.php └── demo.php └── static ├── css └── bootstrap.css └── js ├── bootstrap.js └── jquery.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/README.md -------------------------------------------------------------------------------- /lua_scripts/content.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/lua_scripts/content.lua -------------------------------------------------------------------------------- /nginx/conf/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/nginx/conf/fastcgi_params -------------------------------------------------------------------------------- /nginx/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/nginx/conf/nginx.conf -------------------------------------------------------------------------------- /nginx/conf/vhosts/lua_queue.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/nginx/conf/vhosts/lua_queue.com.conf -------------------------------------------------------------------------------- /ngx_lua_php_queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/ngx_lua_php_queue.png -------------------------------------------------------------------------------- /php_scripts/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/config.php -------------------------------------------------------------------------------- /php_scripts/cron_queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/cron_queue.php -------------------------------------------------------------------------------- /php_scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/index.html -------------------------------------------------------------------------------- /php_scripts/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/queue.php -------------------------------------------------------------------------------- /php_scripts/redisserver/APCObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/APCObject.php -------------------------------------------------------------------------------- /php_scripts/redisserver/IKeyLocker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/IKeyLocker.php -------------------------------------------------------------------------------- /php_scripts/redisserver/IMemcacheDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/IMemcacheDecorator.php -------------------------------------------------------------------------------- /php_scripts/redisserver/IMemoryStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/IMemoryStorage.php -------------------------------------------------------------------------------- /php_scripts/redisserver/IRedisServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/IRedisServer.php -------------------------------------------------------------------------------- /php_scripts/redisserver/KeyAutoUnlocker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/KeyAutoUnlocker.php -------------------------------------------------------------------------------- /php_scripts/redisserver/MemcacheObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/MemcacheObject.php -------------------------------------------------------------------------------- /php_scripts/redisserver/MemcachedDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/MemcachedDecorator.php -------------------------------------------------------------------------------- /php_scripts/redisserver/MemcachedObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/MemcachedObject.php -------------------------------------------------------------------------------- /php_scripts/redisserver/MemoryObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/MemoryObject.php -------------------------------------------------------------------------------- /php_scripts/redisserver/PhpRedisObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/PhpRedisObject.php -------------------------------------------------------------------------------- /php_scripts/redisserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/README.md -------------------------------------------------------------------------------- /php_scripts/redisserver/RedisObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/RedisObject.php -------------------------------------------------------------------------------- /php_scripts/redisserver/RedisServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/RedisServer.php -------------------------------------------------------------------------------- /php_scripts/redisserver/Shm/DummyMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/Shm/DummyMutex.php -------------------------------------------------------------------------------- /php_scripts/redisserver/Shm/IMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/Shm/IMutex.php -------------------------------------------------------------------------------- /php_scripts/redisserver/Shm/ISingleMemory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/Shm/ISingleMemory.php -------------------------------------------------------------------------------- /php_scripts/redisserver/Shm/MultiAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/Shm/MultiAccess.php -------------------------------------------------------------------------------- /php_scripts/redisserver/Shm/ReadOnlyAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/Shm/ReadOnlyAccess.php -------------------------------------------------------------------------------- /php_scripts/redisserver/Shm/SHMObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/Shm/SHMObject.php -------------------------------------------------------------------------------- /php_scripts/redisserver/Shm/ShmMem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/Shm/ShmMem.php -------------------------------------------------------------------------------- /php_scripts/redisserver/Shm/SingleMemory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/Shm/SingleMemory.php -------------------------------------------------------------------------------- /php_scripts/redisserver/Tests/TestMemoryObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/Tests/TestMemoryObject.php -------------------------------------------------------------------------------- /php_scripts/redisserver/Tests/TestRedisServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/Tests/TestRedisServer.php -------------------------------------------------------------------------------- /php_scripts/redisserver/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/redisserver/demo.php -------------------------------------------------------------------------------- /php_scripts/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/static/css/bootstrap.css -------------------------------------------------------------------------------- /php_scripts/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/static/js/bootstrap.js -------------------------------------------------------------------------------- /php_scripts/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takatost/ngx_lua_php_queue/HEAD/php_scripts/static/js/jquery.js --------------------------------------------------------------------------------