I made a redis client (lol). It's pretty alpha I think. Here's the repo: https://github.com/squarism/opencomputers_redis
local redis = require("redis")
client = redis.connection('opencomputers://localhost:6379')
-- change databases
client:select(11)
-- basic usage
client:set("redis", "awesome")
This will store "awesome" in the "redis" key in the real-world redis server on localhost. Of course you need an Internet card and some other setup. It's in the README and if it's not it should be and that's a bug.
You have to unblacklist localhost in this case. The other details are in t