Upcoming Talks
-
Recent Posts
Recent Comments
- Nathan Alden on Mixing async and sync in distributed systems
- Architecting a MVC web application with Knockout « thewayofcode on How we do MVC – View models
- Anonymous Coward on Enumeration classes
- Software Development Word of the Day « A-Cuppa-Code on Evolutionary Architecture
- Event-Sourced Architectures by Martin Thompson at QConLondon 2012 « Matthew Skelton on Event Sourcing as a strategic advantage
Archives
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
Categories
- Agile
- ALT.NET
- altnetconf
- Architecture
- ASP.NET
- ASP.NET MVC
- ASP.NET MVC in Action
- ASP.NET Web API
- Austin Code Camp
- Austin DDD Book Club
- AutoMapper
- BDD
- Behave#
- Behavior-Driven Development
- C#
- Code smells
- Community
- Continuous Improvement
- Continuous Integration
- Dependency Injection
- Design
- Distributed Systems
- Domain Driven Design
- Domain-Driven Design
- Entity Framework
- git
- JavaScript
- Legacy Code
- LINQ
- LINQ to SQL
- Mercurial
- Misc
- MonoRail
- MSBuild
- MVC
- NBehave
- NFJS
- NHibernate
- NServiceBus
- OO
- OSS
- PabloTV
- Patterns
- People
- Personal
- Process
- PTOM
- Rails
- Rant
- Refactoring
- REST
- Rhino Mocks
- Ruby
- SQL
- StructureMap
- TDD
- Team Build
- Testing
- TFS
- Tools
- Uncategorized
- VSTS
- WCF
Meta
Category Archives: Architecture
Limits of performance optimization
Back in college, where I was an Electrical Engineering undergrad, I had an especially difficult professor for my microcontrollers course. In this course, we would hand-roll assembly language instructions and upload them to the 68HC12 testing board. (Side-note, I never, … Continue reading
Dealing with transactions
In the last post on NServiceBus, I got quite a few comments that one way to fix the problem of dealing with non-transactional operations that must happen if some transaction succeeds is to simply move the non-transactional operation after the … Continue reading
Async messaging realities
I got a bit of a chuckle from Ayende’s post on time traveling emails. In it, he shows messages in his email inbox received out of order chronologically from when they actually occurred in the real world. That’s one of … Continue reading
Distributed computing fallacies and REST
One item to keep in mind when investigating consuming or exposing REST APIs are the fallacies of distributed computing: The network is reliable. Latency is zero. Bandwidth is infinite. The network is secure. Topology doesn’t change. There is one administrator. … Continue reading
Also posted in Distributed Systems
8 Comments
Efficient transactional processing
Ayende had a post on how to handle race conditions and unbounded result sets, describing a problem where you needed to perform transactional work against a set of entities. A bad solution would be: var subscriptions = session.Query<Subscription>().Where(s=>s.NextCharge < DateTime.Now); … Continue reading
Case study in mixing system concerns
For the vast majority of systems I’ve been involved with, transaction isolation levels were never something I really had to worry about too much. The number of reads on these systems overwhelmingly outnumbered the number of writes. But every once … Continue reading
Queues are still queues
Recently, we’ve started migrating our application to more of a message-based architecture. This will be part of a bigger series on migrating to a messaging-based architecture, but one rather funny (or not funny, since we were in production) side effect … Continue reading
Also posted in Distributed Systems, NServiceBus
6 Comments

