Live data from Hacker News

Viewing profile — persei8

persei8

HN member
Joined
Sat, Dec 31, 2011, 12:32 AM UTC
HN karma
31
Public activity
10 items

About persei8

No profile information was provided.

Recent public activity

  1. comment
    Comment #7996037

    If I could recommend _just_one_ resource from that list, it would be http://www.tigerteam.dk/talks/IDDD-What-SOA-do-you-have-talk...

  2. comment
    Comment #7996025

    amazon.com is pretty traditional web application and they've been doing SOA for ages.

  3. comment
    Comment #7995976

    Service owns it's data. Other services can't access this data directly. Within service, on it's data, you can do as many "joins" as you want.

  4. comment
    Comment #7995959

    Request/Reply pattern makes a poor choice for communication between services - it increases coupling. It doesn't matter much if it comes with HTTP or any other flavour. Again, Jepp…

  5. comment
    Comment #7995871

    Transactions spanning several microservices violate their autonomy - one service should not lock resources of another. Jeppe Cramon explains it pretty well in http://www.tigerteam.…

  6. comment
    Comment #7995722

    > If the entities in one service are not in strong relationship with one another, it's a sign you can split them in two services. But if two microservices talk to each other so ext…

  7. comment
    Comment #5487949

    Is it true that you don't fully buffer body of POST request on router? This limitation works against Unicorn design and makes it hardly a "fix": http://rubyforge.org/pipermail/mong…

  8. story
  9. story
  10. comment
    Comment #4882182

    To me framework is a set of libraries, glued together with some infrastructure code. Framework provides some conventions that speed up most common tasks. It may be possible to use …