mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-05 14:07:39 +03:00
Almost there; Replace memCache with :memory: SQLite cache
This commit is contained in:
parent
8b32cfaaff
commit
7d93b0596b
6 changed files with 89 additions and 52 deletions
|
@ -162,11 +162,11 @@ func New(conf *Config) (*Server, error) {
|
|||
|
||||
func createCache(conf *Config) (cache, error) {
|
||||
if conf.CacheDuration == 0 {
|
||||
return newNopCache(), nil
|
||||
return newNopCache()
|
||||
} else if conf.CacheFile != "" {
|
||||
return newSqliteCache(conf.CacheFile)
|
||||
return newSqliteCache(conf.CacheFile, false)
|
||||
}
|
||||
return newMemCache(), nil
|
||||
return newMemCache()
|
||||
}
|
||||
|
||||
// Run executes the main server. It listens on HTTP (+ HTTPS, if configured), and starts
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue