go-redis
go-redis copied to clipboard
Set don't support unitptr
var id uintptr = 123
err := rdb.Set(ctx, "test1", id, 0)
if err != nil {
t.Fatal(err)
}
It's look a little bit strange that you want to store pointer on db, for me this doesn't look good.
@oldme-git I have responded in the PR, would you like to follow up the discussion there or we should close this ?
If anyone would like to take a shoot at this - feel free, otherwise we will consider it for v10
It's look a little bit strange that you want to store pointer on db, for me this doesn't look good.
Perhaps we'll discuss it in the PR.