spullara / redis-protocol

Java client and server implementation of Redis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SocketPool shutdown option

costin opened this issue · comments

Currently there's no option to close the opened sockets inside SocketPool which means unless the connections are all tracked, there might be opened sockets left behind after an application shuts down.

I'm going to remove the socket pool as it was mostly not being used. Any pooling should be moved to pool RedisClient instances.

Removed the pool entirely and moved to a model where you would pool RedisClients.