We’re excited to share a new contribution from the OpenFn community—thanks to @aloundoye for adding mSet
functionality to the Redis adaptor!
The new mSet
funcition allows developers to set multiple key-value pairs in Redis with a single call—boosting performance and making bulk operations more efficient. This is especially handy for integration jobs where you want to push multiple values into Redis at once, without needing to loop through and make multiple set
calls.
Check out the docs here: redis-docs#mset
Example usage:
mSet([
{ key: "patient", value: { name: "victor", ihs_number: 12345 } },
{ key: "doctor", value: { name: "Alice", specialization: "cardiology" } },
]);
This enhancement is now available in the latest release of the Redis adaptor v1.3.0. If you’re using Redis in your automation workflows, give it a try and let us know what you think!
Big thanks again to @aloundoye for the contribution. Want to contribute too? Check out our contribution guide to get started!