mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
5e4b63acb2
# FAQ ### Looking for free support? http://support.iris-go.com https://kataras.rocket.chat/channel/iris ### Looking for previous versions? https://github.com/kataras/iris#version ### Should I upgrade my Iris? Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready. > Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes. **How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`. For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework). ### About our new home page http://iris-go.com Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome! [Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him. The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please! Read more at https://github.com/kataras/iris/blob/master/HISTORY.md Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
83 lines
2.1 KiB
Go
83 lines
2.1 KiB
Go
// Copyright 2017 Gerasimos Maropoulos. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package service
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/imdario/mergo"
|
|
)
|
|
|
|
const (
|
|
// DefaultRedisNetwork the redis network option, "tcp"
|
|
DefaultRedisNetwork = "tcp"
|
|
// DefaultRedisAddr the redis address option, "127.0.0.1:6379"
|
|
DefaultRedisAddr = "127.0.0.1:6379"
|
|
// DefaultRedisIdleTimeout the redis idle timeout option, time.Duration(5) * time.Minute
|
|
DefaultRedisIdleTimeout = time.Duration(5) * time.Minute
|
|
// DefaultRedisMaxAgeSeconds the redis storage last parameter (SETEX), 31556926.0 (1 year)
|
|
DefaultRedisMaxAgeSeconds = 31556926.0 //1 year
|
|
)
|
|
|
|
// Config the redis configuration used inside sessions
|
|
type Config struct {
|
|
// Network "tcp"
|
|
Network string
|
|
// Addr "127.0.0.1:6379"
|
|
Addr string
|
|
// Password string .If no password then no 'AUTH'. Default ""
|
|
Password string
|
|
// If Database is empty "" then no 'SELECT'. Default ""
|
|
Database string
|
|
// MaxIdle 0 no limit
|
|
MaxIdle int
|
|
// MaxActive 0 no limit
|
|
MaxActive int
|
|
// IdleTimeout time.Duration(5) * time.Minute
|
|
IdleTimeout time.Duration
|
|
// Prefix "myprefix-for-this-website". Default ""
|
|
Prefix string
|
|
// MaxAgeSeconds how much long the redis should keep the session in seconds. Default 31556926.0 (1 year)
|
|
MaxAgeSeconds int
|
|
}
|
|
|
|
// DefaultConfig returns the default configuration for Redis service
|
|
func DefaultConfig() Config {
|
|
return Config{
|
|
Network: DefaultRedisNetwork,
|
|
Addr: DefaultRedisAddr,
|
|
Password: "",
|
|
Database: "",
|
|
MaxIdle: 0,
|
|
MaxActive: 0,
|
|
IdleTimeout: DefaultRedisIdleTimeout,
|
|
Prefix: "",
|
|
MaxAgeSeconds: DefaultRedisMaxAgeSeconds,
|
|
}
|
|
}
|
|
|
|
// Merge merges the default with the given config and returns the result
|
|
func (c Config) Merge(cfg []Config) (config Config) {
|
|
|
|
if len(cfg) > 0 {
|
|
config = cfg[0]
|
|
mergo.Merge(&config, c)
|
|
} else {
|
|
_default := c
|
|
config = _default
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
// MergeSingle merges the default with the given config and returns the result
|
|
func (c Config) MergeSingle(cfg Config) (config Config) {
|
|
|
|
config = cfg
|
|
mergo.Merge(&config, c)
|
|
|
|
return
|
|
}
|