Alexey
Alexey
@cjmartinez217, If you still wanting to contribute can I somehow help you? Otherwise I can try to work on the implementation idea provided by @40rn05lyv
@kiview Well sorry for long thinking about the problem, maybe it instead could be a flag on `@Container` annotation, so in the https://github.com/testcontainers/testcontainers-java/blob/main/modules/junit-jupiter/src/main/java/org/testcontainers/junit/jupiter/TestcontainersExtension.java, we might split containers into 2 groups...
I've tried something like this: ``` func main() { mRedis, _ := miniredis.Run() mRedis.RequireUserAuth("hello", "world") redisUrl, _ := redis.ParseURL(fmt.Sprintf("redis://hello:world@%s", mRedis.Addr())) redisClient := redis.NewClient(redisUrl) miniSub := mRedis.NewSubscriber() miniSub.Subscribe("channel") curTime := time.Now()...
I'll try to benchmark with native-redis, dockerized-redis and miniredis today, when I have more free time, but it looks strange, maybe it is even redis client issue
@lfolger, Hello, I've came across this issue with same questions as the @ofen. My proposal is to extract the [visitFunction](https://github.com/protocolbuffers/protobuf-go/blob/b8fc7706010499f46982c883add4351b12e30c0b/encoding/protojson/encode.go#L228) and make it default visitFunction for MarshalOptions. So it will...
The `clearAndWrite` sounds better, didn't think about it :) About the mutating the original object, I think it is up to library user to mutate the values so general usage...
@lfolger, you are right, I'm writing clone-based solution right now, I will provide benchmarks when I finish to see if it is really that necessary, but for repeated fields or...
@ofen, sorry for late answer, been quiet busy. Sample gist with proto clearup: https://gist.github.com/Olex1313/88ff52b1f4cad1af15c6733b4553b4cb As for benchmarks I'll post it today evening, after switching from work to personal laptop, right...
@Mahes2, I can not share the benchmarks (did it for work), but as the @puellanivis said it's very complex design issue in protobuff serialization, and this doesn't go well with...
@Mahes2 > I see. but is it ok if i give contribution to add new tag and using the approach i have given above? It's up to maintainers, if they...