in reply to Valkey and Redis support

I have some simple applications that use Redis. I swapped out the Redis server for Valkey. The apps didn't notice. I use the Redis module.

My weatherstation reports current readings to my server with an HTTP post. A perl program records the readings into a database. It then connects to Redis and reads the previous settings, compares them to the new readings, and publishes any changed readings to a Redis topic after storing the newest readings. Another perl program displays the current readings from Redis using Curses, then listens to the topic for updates.

90% of every Perl application is already written.
dragonchild

Replies are listed 'Best First'.
Re^2: Valkey and Redis support
by hippo (Archbishop) on Aug 23, 2025 at 11:38 UTC

    Thank you - that's just the info I was hoping for. The plan was to use the Redis module so it's great to hear that it has worked for you with no problems. I will give it a go now with some confidence.


    🦛