We have a problem that simply we cannot solve for weeks.
We are using Node.js on Heroku, openredis for our Redis server, 'node-redis' for the Node Redis client.
In our mobile app project, we have a redis list called 'user_list' where it contains the keys in our redis db #1 (list is in the db #1) as well. We show the locations of the users on a map by first pulling the id's from the user_list and later on for each id in list we make a 'get' request.
However the issue is when we are trying to make a 'smembers user_list' we cannot retrieve the entire elements in user_list. After number of 46 records it returns like ',,,,,,,,'
We literally tried everything and when we gradually increase the elements inside the list it works but when we put 100 elements we simply cannot retrieve
What could be the problem?