Live data from Hacker News

Viewing profile — rreppel

rreppel

HN member
Joined
Mon, Oct 03, 2016, 3:50 PM UTC
HN karma
16
Public activity
10 items

About rreppel

No profile information was provided.

Recent public activity

  1. comment
    Comment #15654623

    Yes ... it's a very powerful pattern and Redis streams look promising; building event sourced systems is still perceived as difficult, but I think a lot of that is because people a…

  2. story
  3. story
  4. comment
    Comment #12632437

    Open sourced ones? The largest example I'm aware of is https://github.com/MicrosoftArchive/cqrs-journey . There's a pretty extensive write-up of their experiences too. https://msdn…

  5. comment
    Comment #12630780

    Just don't do eventual consistency if the domain doesn't allow for it and if performance is OK. From a functional perspective there is no need for it in CQRS/ES systems. However ..…

  6. comment
    Comment #12630108

    I don't really do eventsourcing for technical reasons. To me it's about creating an environment for project delivery where teams can succeed because they own more of their stack, f…

  7. comment
    Comment #12628961

    No, haven't tried them yet. Does look interesting for it, though.

  8. comment
    Comment #12628709

    Agree with the potential for complexity. Here's how we've dealt with this (on a so far / so good basis): Didn't seem necessary to go asynchronous and beef up on heavy infrastructur…

  9. comment
    Comment #12628579

    Always a problem with techie - acronymania. :) Thanks, noted. I'll do an edit.

  10. comment
    Comment #12628544

    We find that a simple in-memory synchronous message bus + event logging to files goes a long way. See e.g. https://github.com/robertreppel/hist for an in-memory bus + file system (…