Since Redis is not Open Source instead SSPLv1 and RSALv2 is not usable anymore, perhaps not technically but at least ethical with open source in mind.
But as always, the community created already a solution to it: Valkey
It’s pretty much a drop-in replacement. So should just work as if Redis is installed.
Though, vikunja probably looks for a service named redis.service. This could be adopted to look for a Redis service or Valkey service — or just only for a valkey.service.
The change should not be too big also for those which had already had a running installation. Okay, the configuration needs then probably a small change in the valkey section, but this would be pretty much a copy and paste from the redis section.
Also, it got a lot of commits since the fork for different things like performance or security, which makes it even better than or at least just as good. And this probably is not true because is still open source, which always wins, not true?
Anyway, this needs to be decided by you (@kolaente) or together with the community if staying for both or only for one.
Vikunja does not look for something called redis, it will use whatever is passed to the configuration. If that’s redis or valkey does not matter.
Because of that, I don’t see why this should be changed - it’s only a name thing. Removing the redis setting from the config and calling it valkey instead would be a breaking change, which I’d like to avoid.
We could change the docs though, to favour valkey over redis (PRs welcome!). If valkey does redis-incompatible changes at some point, we could reconsider adding explicit support for valkey.
Oh, if this is the case then I do have a configuration error, I guess.
Because the Redis integration/configuration does not work on my side…… So I thought this could be that the service is named differently.
With this knowledge, I agree with you that this does not need any changes.
Does a user and password needed to be configured for Redis/Valkey?
My configuration:
redis:
# Whether to enable redis or not
enabled: true
# The host of the redis server including its port.
host: 'localhost:6379'
# The password used to authenticate against the redis server
password: ''
# 0 means default database
db: 0