djcart Verified User Joined Jun 29, 2021 Messages 122 Apr 5, 2023 #1 When enabled for the redis client, does it serve one of the websites for it or can it also run it for the other website from this socket?
When enabled for the redis client, does it serve one of the websites for it or can it also run it for the other website from this socket?
B BillyS Verified User Joined Jul 17, 2021 Messages 454 Apr 6, 2023 #2 Might be a problem for others too, but I don't understand your question. Redis comes configured for 16 databases, but more if you have enough memory.
Might be a problem for others too, but I don't understand your question. Redis comes configured for 16 databases, but more if you have enough memory.
cjd Verified User Joined Feb 1, 2021 Messages 332 Location Canada Apr 6, 2023 #3 When you enable redis for a user in DA, it creates a socket for each user /home/*/.redis/redis.sock Any website under that user can use it. Just need to make sure you don't have any collisions of names/values.
When you enable redis for a user in DA, it creates a socket for each user /home/*/.redis/redis.sock Any website under that user can use it. Just need to make sure you don't have any collisions of names/values.
O Ohm J Verified User Joined Aug 16, 2019 Messages 1,900 Apr 6, 2023 #4 it should fine with database(number), just use "select" option, like... $redis->select(1); it will select database (1).
it should fine with database(number), just use "select" option, like... $redis->select(1); it will select database (1).