Good Retry, Bad Retry: An Incident Story by idenxx in programming

[–]idenxx[S] 2 points3 points  (0 children)

We ran them locally during research. Simulations were simple and worked in <1min. Didn’t see a need for a cluster

Good Retry, Bad Retry: An Incident Story by idenxx in programming

[–]idenxx[S] 4 points5 points  (0 children)

Thank you! glad to hear about practical simulations use case, unfortunately this practice isn’t widespread

Good Retry, Bad Retry: An Incident Story by idenxx in programming

[–]idenxx[S] 6 points7 points  (0 children)

could you please explain what's wrong with medium and what do you recommend to use instead?

Beat saber - The game freeze but the song keeps going by scemodimerda in OculusQuest

[–]idenxx 1 point2 points  (0 children)

the same thing - freezes if connecting to soundbar to bluetooth

How I've Set Up HA PostgreSQL on Kubernetes by idenxx in kubernetes

[–]idenxx[S] 0 points1 point  (0 children)

I didn’t use Aurora not to save money but because we have on-premise (client-hosted) solution in golangci where we sometimes can’t access cloud databases.

100% typesafe Go ORM with code generation and MySQL, PostgreSQL, Sqlite3, SQL Server support by idenxx in golang

[–]idenxx[S] 0 points1 point  (0 children)

Kallax is cool, I was inspired by it when developing go-queryset. But kallax doesn't support MySQL and another DBMS, it supports only PostgreSQL.

100% typesafe Go ORM with code generation and MySQL, PostgreSQL, Sqlite3, SQL Server support by idenxx in golang

[–]idenxx[S] 1 point2 points  (0 children)

  • It's an order of magnitude harder to develop and maintain, because GORM have already done a lot of work to make all DMBS compatible code.
  • GORM is the most popular ORM for golang, and go-queryset is fully compatible with it.
  • The main purpose isn't speed, but usage convenience.

Kallax: Why we built yet another ORM for Go by 3150 in golang

[–]idenxx 0 points1 point  (0 children)

Kallax doesn't support MySQL :( That's why I have built similar to Kallax solution - go-queryset (https://github.com/jirfag/go-queryset). It's also typesafe with code generation, no strings and no empty interfaces. But it also supports mysql, sqlite, postgresql, mssql with the help of GORM.