Skip to content

Release v0.5

Latest
Compare
Choose a tag to compare
@Sparky4567 Sparky4567 released this 10 Nov 19:28
· 2 commits to main since this release

Release v0.5

What's new?

  • Redis support !

apt install redis and set your Redis config in your config.py

#Redis
redis_support_enabled = True
redis_host = "localhost"
redis_port = 6379
redis_db = 0

And bang, you can use Redis now.
Just restart the server after config changes.

How this works

Redis gets a request first. If no key values are found, then the same request goes to the SQLite database. If a result is found in the database, the same key values from the response are being inserted into the Redis cache.