Re: Host-wide Singleton Instance

2021-11-03 Thread Mark Thomas
On 02/11/2021 20:47, Jerry Malcolm wrote: I am adding a redis implementation  (jedis) to my application.  I have a jedis implementation class that holds the connection pool and interfaces with jedis.  That class needs to be instantiated once per host and then referenced from that point on by al

Host-wide Singleton Instance

2021-11-02 Thread Jerry Malcolm
I am adding a redis implementation  (jedis) to my application.  I have a jedis implementation class that holds the connection pool and interfaces with jedis.  That class needs to be instantiated once per host and then referenced from that point on by all of the webapps in the host.  Is there an