Giter VIP home page Giter VIP logo

Comments (9)

kamikazechaser avatar kamikazechaser commented on June 3, 2024

I don't fully understand your question. Asynq uses go-redis/v9. Afaik, the tests pass and everything works fine.

However if you are reusing a go-redis connection for asynq, you need to set it up correctly.

from asynq.

Jeremy-Run avatar Jeremy-Run commented on June 3, 2024

@kamikazechaser
Thank you for your reply!
Let me improve my question:
In our project, this will report an error when using NewClient(r RedisConnOpt). The reason for the error is that r.MakeRedisClient() returns a go-redis/v8 client, which cannot be converted into redis.UniversalClient in go-redis/v9.

from asynq.

kamikazechaser avatar kamikazechaser commented on June 3, 2024

Could you additionally post the code on your end to reproduce this issue.

from asynq.

kamikazechaser avatar kamikazechaser commented on June 3, 2024

Possibly related to #790

from asynq.

Jeremy-Run avatar Jeremy-Run commented on June 3, 2024

This panic is inevitable.
This is my pseudo-code:

package main

import (
	"github.com/hibiken/asynq"  // v0.24.1 
	"github.com/go-redis/redis/v8"
)

type XRDS struct {
	*redis.Client
}

func (xrds *XRDS) MakeRedisClient() interface{} {
	return xrds
}

func NewRedisClient() *XRDS {
	c := redis.NewFailoverClient(&redis.FailoverOptions{
		MasterName:    "mymaster",
		SentinelAddrs: []string{"x.x.x.x:16379", "x.x.x.x:16379", "x.x.x.x:16379"},
		Password:      "xxxxxx",
		DB:            1,
	})
	return &XRDS{Client: c}
}

func main() {
	_ = asynq.NewClient(NewRedisClient())
}

from asynq.

kamikazechaser avatar kamikazechaser commented on June 3, 2024

"github.com/go-redis/redis/v8"

Use go-redis/v9 with v0.24.1 and let me know if the issue still persists. I see that you are not using the x module which is problematic right now.

from asynq.

Jeremy-Run avatar Jeremy-Run commented on June 3, 2024

Yes, we can't go wrong with go-redis/v9.
What I want to ask is, does asynq need to support multiple go-redis versions?

from asynq.

kamikazechaser avatar kamikazechaser commented on June 3, 2024

What I want to ask is, does asynq need to support multiple go-redis versions?

No. We want to stick with v9 only. You can track some changes on the sohail/go-update branch which removes the last mention of go-redis/v8 from the x module.

from asynq.

Jeremy-Run avatar Jeremy-Run commented on June 3, 2024

Well, thank you for your answer.

from asynq.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.