-
Notifications
You must be signed in to change notification settings - Fork 0
Redis
virtualWinter edited this page Aug 31, 2025
·
1 revision
The storage-redis module provides a simple way to interact with a Redis server.
// Initialize the Redis connection
Redis redis = new Redis("localhost", 6379);
redis.init();
// Get the Jedis instance
Jedis jedis = redis.getJedis();
// ... perform operations with Jedis
// Close the connection
redis.end();© 2025 CatMC Network