Juan Calderon-Perez
Juan Calderon-Perez
@lvlcn-t Fiber v3 is still under development, we will update all the contrib middleware once closer to release
Hey @jlowin Is this repo maintained or not? I see commits being merged to default branch but README says otherwise. If not, would you be interested in transferring the project...
@zzstoatzz You are correct, found the PR In this PR, FastMCP was integrated into the SDK: https://github.com/modelcontextprotocol/python-sdk/pull/106
@ReneWerner87 We could do this by adding `Open()` as part of the storage interface. If it sounds good to you I can do the PR for all the drivers
@mirusky Btw you are using the old Redis Driver. The latest one `v2` uses the `redis.UniversalClient`.
@mirusky Planning PR for this weekend
@mirusky @ReneWerner87 i'm adding this as an alternative to New() when creating the storage, does that make sense? Example ```go conn := UniversalClient(...) store = redis.Open(conn) ``` At that point...
@Anush008 They have a key/value backend but seems not available in the Go SDK.
@Anush008 How about something like this: ```go // Example operations using a sample key and value. key := "mykey" value := "myvalue" dummyVector := []float32{0.0} // Dummy vector to satisfy...
@Anush008 The point of the drivers is to use them as Key/Val and also database clients. That's why they have the `Conn()` method. Although idk if its even performant to...