Golang : Switch Redis database redis.NewClient
Problem : Your default Redis connection is using database 0 and you want to get some keys from different Redis database during runtime.
Solution : Create another Redis client with the database index.
// Create a new Redis client with different db
redisClient := redis.NewClient(&redis.Options{
Addr: os.Get("REDIS_HOST") + ":" + os.Get("REDIS_PORT"),
Password: os.Get("REDIS_PASSWORD"),
DB: 9, // use different database than 0
})
defer redisClient.Close()
// do what you want here
// for example
iter := redisClient.Scan(ctx, 0, "hscodes:*", 0).Iterator() // scan to get all the keys matching wildcard pattern.
Reference :
See also : Golang : PGX CopyFrom to insert rows into Postgres database
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11.2k Golang : Read until certain character to break for loop
+11.6k Golang : Concatenate (combine) buffer data example
+17.7k Golang : Upload/Receive file progress indicator
+16.5k Golang :Trim white spaces from a string
+5.4k Javascript : Shuffle or randomize array example
+14.5k Golang : Simple word wrap or line breaking example
+9.6k Facebook : Getting the friends list with PHP return JSON format
+8.7k Golang : Add text to image and get OpenCV's X, Y co-ordinates example
+6.4k Golang : Selection sort example
+16.6k Golang : File path independent of Operating System
+7.5k Golang : How to convert strange string to JSON with json.MarshalIndent
+10.8k Golang : Simple File Server