Skip to content
virtualWinter edited this page Aug 31, 2025 · 1 revision

Redis

The storage-redis module provides a simple way to interact with a Redis server.

Usage

// 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();

Clone this wiki locally