Maksim Shcherbo

Results 30 comments of Maksim Shcherbo

Following @breml , I've got a similar question about mysql implementation. https://github.com/ThreeDotsLabs/watermill-sql/blob/a2768559a9c416c1d8b5fe506401dc51639abb63/pkg/sql/subscriber.go#L249 Is it possible to optimise the reads?

Hi @valensto. Thanks for letting me know. Are there any plans to support `echo`?

That's not exactly what I meant. Let me explain. Golang doesn't allow to ignore some certain files or folders by default. For example I'd like to ignore some auto-generated files,...

@jamietanna Sorry, my question is about supporting generics. Should have phrased it better.

Sounds both interesting and frighting. With generics comes the power and responsibility. All these entity managers/generic repos come from Java/Net world. Such tools as Entity Framework or Hibernate have been...

Hi @qRoC, Is it an open source project? When in comes to design, your UoW exposes a context as a part of its API. What is a use case for...

Hey @qRoC, thanks for your replies. If I got it correctly, your proposal about `EntityRepository`: > rel.EntityRepository[T any]: Repository for entity. Similar to rel.Repository, but with generics and managed by...

Another typical example is a an open telemetry tracer ```go func NewExporter(ctx context.Context, endpoint string) (*otlptrace.Exporter, error) { traceOpts := []otlptracegrpc.Option{ otlptracegrpc.WithTimeout(exporterConnTimeout), otlptracegrpc.WithInsecure(), otlptracegrpc.WithEndpoint(endpoint), } exporter, err := otlptracegrpc.New(ctx, traceOpts...)...

HI @abhinav. Thank you for your reply. Correct me if I'm wrong, but iirc, `uber/fx` does not expose its context. If I get it correctly your suggestion was to do...

Hey @JacobOaks thanks for elaboration. Now it does make sense to me.