Viewing profile — persei8
persei8
HN member- Joined
- Sat, Dec 31, 2011, 12:32 AM UTC
- HN karma
- 31
- Public activity
- 10 items
- HN profile
- View on Hacker News ↗
About persei8
No profile information was provided.
Recent public activity
-
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...
-
comment
Comment #7996025
amazon.com is pretty traditional web application and they've been doing SOA for ages.
-
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.
-
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…
-
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.…
-
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…
-
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…
- story
- story
-
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 …