You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							42 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							42 lines
						
					
					
						
							1.1 KiB
						
					
					
				
								package redis
							 | 
						|
								
							 | 
						|
								import (
							 | 
						|
									"github.com/go-redis/redis/v8"
							 | 
						|
									"github.com/seaweedfs/seaweedfs/weed/filer"
							 | 
						|
									"github.com/seaweedfs/seaweedfs/weed/util"
							 | 
						|
								)
							 | 
						|
								
							 | 
						|
								func init() {
							 | 
						|
									filer.Stores = append(filer.Stores, &RedisClusterStore{})
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								type RedisClusterStore struct {
							 | 
						|
									UniversalRedisStore
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								func (store *RedisClusterStore) GetName() string {
							 | 
						|
									return "redis_cluster"
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								func (store *RedisClusterStore) Initialize(configuration util.Configuration, prefix string) (err error) {
							 | 
						|
								
							 | 
						|
									configuration.SetDefault(prefix+"useReadOnly", false)
							 | 
						|
									configuration.SetDefault(prefix+"routeByLatency", false)
							 | 
						|
								
							 | 
						|
									return store.initialize(
							 | 
						|
										configuration.GetStringSlice(prefix+"addresses"),
							 | 
						|
										configuration.GetString(prefix+"password"),
							 | 
						|
										configuration.GetBool(prefix+"useReadOnly"),
							 | 
						|
										configuration.GetBool(prefix+"routeByLatency"),
							 | 
						|
									)
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								func (store *RedisClusterStore) initialize(addresses []string, password string, readOnly, routeByLatency bool) (err error) {
							 | 
						|
									store.Client = redis.NewClusterClient(&redis.ClusterOptions{
							 | 
						|
										Addrs:          addresses,
							 | 
						|
										Password:       password,
							 | 
						|
										ReadOnly:       readOnly,
							 | 
						|
										RouteByLatency: routeByLatency,
							 | 
						|
									})
							 | 
						|
									return
							 | 
						|
								}
							 |