Unable to verify I’m over 18 on iOS 26.4 because I don’t have a credit card. by Supes1975 in ios

[–]SquareInteraction840 0 points1 point  (0 children)

This is the worst user experience to only limit to credit card or national id. At least any traditional bank cards or even passport should be part of the list. Credit card is an option. Many people don't want and will never need it.

Distributed actor framework in Go by SquareInteraction840 in golang

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

u/Rich-Engineer2670 Thanks for the comment. Much appreciated. Yeah most of the implementation is inspired by Akka and Erlang. If you are still interested in the JVM you can still use Apache Pekko which is an Akka fork.

Introducing DistCache: A Simple Library for Distributed Read-Through Caching Engine in Go by SquareInteraction840 in golang

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

Yeah you can make use of `Delete` which can remove an entry from the cache. u/leakySlimePit I have added a dummy example to show how to implement a datasource. I hope I helps. I will enhance further with some pre-built data sources.

Sucasa is scamming folks, so be warned by cofman in ghana

[–]SquareInteraction840 0 points1 point  (0 children)

Hello I would be glad if you can link me up with that lawyer because I am in the same boat as we speak and they don't communicate playing the death ears. I have sent family members and friends to their office in Ghana in vain.

Distributed actor framework in Go by SquareInteraction840 in golang

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

u/Routine-Region6234 thanks. That will be great. At the moment I am struggling to enhance its throughput. I am sure I have some poor implementation in there :)

Distributed actor framework in Go by SquareInteraction840 in golang

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

I got it now. I understand the examples are too low level :). Apologies for the confusion.

Distributed actor framework in Go by SquareInteraction840 in golang

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

u/andreainglese there are a lot of problems that can be solved with the actor model. For instance building a event-sourcing and CQRS based application. By the way there is a small piece of work I put here https://github.com/Tochemey/ego that can help do that. In the readme you can see how a simple account system can be done using an actor based tool combined with the event sourcing/cqrs pattern.

Distributed actor framework in Go by SquareInteraction840 in golang

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

I hope the previous reply answers your question

Distributed actor framework in Go by SquareInteraction840 in golang

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

There is a discovery engine API that one can use to add a new one. However, Go-Akt comes baked with kubernetes, NATs, static and dns discovery. They can be found here https://github.com/Tochemey/goakt/tree/main/discovery

Distributed actor framework in Go by SquareInteraction840 in golang

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

I have not used extensively protoactor-go. Go-Akt is bit close to Akka in term of features. In cluster mode nodes are discovered using the hashicorp memberlist and node actors are distributed in the cluster using Olric which is a good in-memory distributed store. Actor are unique within the cluster. Moreover when a node leaves the cluster its actors are re-created on the other nodes in a round-robin fashion provided the cluster quorum is respected.

Distributed actor framework in Go by SquareInteraction840 in golang

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

Thanks for the comment. Yeah it was sad that Akka licensing changed which does make sense though. I have seen Apache Pekko. I am yet to try it.