I'm new to redis.
I'm using redis in ubuntu with PHP.
My actual process is:
1) read existing records from db table and keep its key in redis db.
2) read data from a file and keep all the keys in redis.
3) compare the keys and do some process (insert / update)
so, once the process is started, cache will be prepared with existing data and start reading from file.
But after 60 seconds exactly, redis stopped working. Redis is till running. Also, php process is not terminated.
I have used redis monitor command. It says "GET my-key" at the end of log.
No error thrown.
Same code is working fine in windows redis. As php used TCP to connect redis, Any TCP or Socket config need to be updated? Because this error happens only in linux. Any config i missed?