YunoHost-Apps / castopod_ynh

Castopod package for YunoHost
https://podlibre.org/
GNU General Public License v3.0
23 stars 7 forks source link

Feature Request: Use Redis Server instead of File as cache system #25

Closed benjaminbellamy closed 3 years ago

benjaminbellamy commented 3 years ago

Feature Request

castopod_ynh is currently using file cache system which is not the fastest in town. Since Redis is already up&running, why not use it?

Context

Steps to reproduce

    cat /var/www/castopod/.env
    […]
    # Cache configuration (advanced)
    # Keep as is if you don't know what this means
    cache.handler="file"

Expected behavior

    […]
    #--------------------------------------------------------------------
    # Redis configuration
    #--------------------------------------------------------------------
    cache.handler="redis"
    cache.redis.host="127.0.0.1"
    cache.redis.password=null
    cache.redis.port=6379
    cache.redis.database=0

Logs

N/A

ericgaspar commented 3 years ago

Closing with #27