-
Notifications
You must be signed in to change notification settings - Fork 68
Description
in transforming a project to async, we've hit a bit of a wall: Plume-org/Plume#777
that wall is the database, or the way we currently (have to) use it.
i was looking into using riker as the actor framework of choice, instead of creating an ad-hoc solution by ourselves
based on some unsuccessful experiments however, I'm not sure riker alone will do.
especially considering this comment:
#98 (comment)
if my Context
is a Connection
, that can't be read only!
but it also doesn't make sense for the Actor
holding a Connection
Context
, to recv
a Connection
Msg
the correct message would be either String
or Statement
i feel like the tools are there in riker to do this, buti don't have the understanding of how to put them together yet
(and if they aren't in riker alone, they should be in https://github.com/riker-rs/riker-cqrs
(but that library's documentation is even more incomprehensible to me))