Hey, community!
Weโre excited to announce that we released a new Redis adaptor last week! This new adaptor is designed to help you easily integrate Redis into your projects. Whether you need to query or write data to a Redis database, our adaptor has got you covered for the most common use cases.
Hereโs what you can do with the current version:
-
Basic Querying: Retrieve data from your Redis database quickly and efficiently.
-
Data Writing: Easily write and store data in Redis.
To give you a head start, weโve included some example job/code snippets that demonstrate how to use the adaptor in a real-world project:
1. Writing Data to Redis:
// Example code snippet for writing hash data to Redis
hset("SA001", { pm25: 35.7 });
2. Fetching Data:
// Example code snippet for fetching hash data from Redis
hget("SA001", "pm25");
Ready to dive in? Head over to our redis adaptor docs and start playing with Redis today!