dotnetomaniak.pl - Artykuły z tagiem Akka.NET

Akka.NET is quite opinionated in terms of persistence. Paraphrasing Henry Ford’s famous quote: You can persist your data any way you want in Akka.NET, so long as you use event sourcing. But what if you don’t want to? Perhaps the problem you are trying to solve doesn’t overlap with this particular mental model, and yet you think you can still gain a lot by leveraging Akka. Then you have to bake your own solution. In this blog post, I would like to show you one way of integrating Akka.NET with an ORM. To k...

Źródło: havret.io
Dziel się z innymi:
How to use Entity Framework Core with Akka.NET

Programowanie rozproszone 2009 dni, 21 godzin, 14 minut temu Havret 130 źrodło rozwiń

Last week I blogged about the integration of Akka.NET and ASP.NET Core. Today I would like to discuss possible problems you may face if you decide to deploy this kind of application, and how you can address them.

Tagi: Akka.NET, iis
Źródło: havret.io
Dziel się z innymi:
[EN] Why deploying Akka.NET on IIS may be a bad idea

Architektura 2034 dni, 21 godzin, 45 minut temu Havret 56 źrodło rozwiń

Integrating Akka.NET and ASP.NET Core can be quite tricky. In this blog post, I would like to demonstrate how to make these two technologies work together smoothly.

Źródło: havret.io
Dziel się z innymi:
How to integrate Akka.NET and ASP.NET Core

Architektura 2040 dni, 21 godzin, 44 minuty temu Havret 138 źrodło rozwiń

A while ago I wrote about creating Actor System and top-level actors. Sadly it was stored in a static field. And keyword static is … let’s say it’s not one of my favourites. Today I’ll show you how I’m doing the exact same thing but in Dependency Injection container.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #7: Creating and accessing Actor System with Dependency Injection Container – Hryniewski.NET

Sztuka programowania 2378 dni, 22 godziny, 36 minut temu Rafał Hryniewski 84 źrodło rozwiń

In the previous post, I’ve briefly described part of a process of persisting state of our actor. I’ve told you about storing events and I’ve mentioned things called snapshots. This post is entirely about them.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #6: Persisting actors state – snapshots – Hryniewski.NET

Daj się poznać 2017 2522 dni, 17 godzin, 46 minut temu Rafał Hryniewski 24 źrodło rozwiń

As I’ve mentioned in previous posts about Akka.NET, everything that actor knows is stored in memory. While we can skip any database or IO related bottlenecks because things in memory are generally speaking very fast, we must remember that memory is not a place where you can store your data for an extended period of time and keep it. So let’s talk about persisting it.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #5: Persisting actors state – events – Hryniewski.NET

Daj się poznać 2017 2527 dni, 8 godzin, 19 minut temu Rafał Hryniewski 45 źrodło rozwiń

In one of my posts about Akka.NET I’ve covered actor selections and paths. Sadly I’ve skipped one rather important part regarding allowed characters for actor paths and what to do if our name cannot be used for creating an actor. And recently I’ve received a question about why I’m creating actors using encoded string. This is the cause.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #3.5: Actor paths requirements and how to meet them – Hryniewski.NET

Daj się poznać 2017 2533 dni, 20 godzin, 39 minut temu Rafał Hryniewski 28 źrodło rozwiń

As you’ve probably seen in previous posts about Akka.NET, actor model is no rocket science and is really easy and fun to start with. However entire actor model may seem like closed and hermetic ecosystem, today I’ll show you how to poke actors in way that’ll make them poke back.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #4: Connecting Actor Model with endpoints – Hryniewski.NET

Daj się poznać 2017 2554 dni, 21 godzin, 1 minutę temu Rafał Hryniewski 23 źrodło rozwiń

One of the concepts of actor model that could be hard to grasp at the begining is fact that we will not operate on direct reference to actor instance. This can be a bit confusing before you’ll get used to it but by not using any direct references you’re sure to achieve very good level of encapsulation.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #3: Actor selections, paths and references – where should you send your messages – Hryniewski.NET

Daj się poznać 2017 2564 dni, 23 godziny, 54 minuty temu Rafał Hryniewski 44 źrodło rozwiń

Let’s take a closer look at our actors, how their life looks like, what exactly they’ve been doing and what they can do. As they are basic building block of applications built on actor model it’s crucial to understand and being able to communicate with them.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #2: A day in the life of an Actor – Hryniewski.NET

Daj się poznać 2017 2576 dni, 9 godzin, 57 minut temu Rafał Hryniewski 34 źrodło rozwiń

In previous post I’ve explained briefly what actor model is and why it’s so fun. Today we’ll create our ActorSystem instance, learn what it is and send first messages to them. I hope it will be nice and easy start.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #1 – Creating Actor System and making first contact – Hryniewski.NET

Daj się poznać 2017 2580 dni, 15 godzin, 16 minut temu Rafał Hryniewski 42 źrodło rozwiń

Actor model concept fascinated me since I’ve heard about it for the first time. It’s been on my todo list ever since and Get Noticed 2017 is great opportunity to give it a try. That’s why there is an actor responsible for almost anything in Me2.0. But, what is an actor, actor model and are benefits of using it in our projects? You’ll find out in a minute.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #0 – Actor Model Basics – Hryniewski.NET

Daj się poznać 2017 2581 dni, 21 godzin, 9 minut temu Rafał Hryniewski 138 źrodło rozwiń

Akka.NET simple example with Github Api Posted on by Michal Franc In this post I want to a simple introduction to Akka.NET using an example app based on Github api. I have been diving into Akka .NET lately. My first encounter with this technology was on Vaughn Vernon workshop in Krakow. The main event had couple of side presentation and one of them was about Akka project in Java world. It was a magic to me. Couple years later, I accidentally found ( probably on twitter ) Bartosz Sypytkowski blog and ...

Tagi: Akka.NET
Źródło: www.mfranc.com
Dziel się z innymi:
[EN] Akka.NET simple example with Github Api | Pragmatic Developer

Programowanie rozproszone 3266 dni, 23 godziny, 56 minut temu michalfranc 161 źrodło rozwiń

Akka.NET is a .NET port of famous actor model programming framework Akka, well known for the JVM community. This blog post discuss how in few lines of code we can distribute our computations by deploying actors on the remote machines. And all of that using F# functional API.

[EN] Akka.NET remote deployment with F# - Simple Solutions

Programowanie rozproszone 3403 dni, 21 godzin, 42 minuty temu Horusiath 100 źrodło rozwiń

Najaktywniejsi w tym miesiącu