|  | @@ -12,7 +12,7 @@ type RedisSessionStore struct {
 | 
	
		
			
			| 12 | 12 |  }
 | 
	
		
			
			| 13 | 13 |  
 | 
	
		
			
			| 14 | 14 |  func NewRedisSessionStore(address string, password string) *RedisSessionStore {
 | 
	
		
			
			| 15 |  | -	session := &RedisSessionStore{}
 | 
	
		
			
			|  | 15 | +	session := &RedisSessionStore{once:&sync.Once{}}
 | 
	
		
			
			| 16 | 16 |  	session.once.Do(func() {
 | 
	
		
			
			| 17 | 17 |  		session.client = redis.NewClient(&redis.Options{
 | 
	
		
			
			| 18 | 18 |  			Addr:     address,
 |