Mar 03 2008

Two data streams for a happy website

Published by gojko under articles

One of the most important architectural decisions that must be done early on in a scalable web site project is splitting the data flow into two streams: one that is user specific and one that is generic. If this is done properly, the system will be able to grow easily. On the other hand, if the data streams are not separated from the start, then the growth options will be severely limited. Trying to make such a web site scale will be just painting the corpse, and this change will cost a whole lot more when you need to introduce it later (and it is “when” in this case, not “if”). Continue Reading »

9 responses so far

Nov 29 2007

Golden rule of web caching

Published by gojko under articles

Effective content caching is one of the key features of scalable web sites. Although there are several out-of-the-box options for caching with modern web technologies, a custom built cache still provides the best performance. Continue Reading »

7 responses so far

Nov 02 2007

Speed up database code with result caching

Published by gojko under articles

One of the most interesting new features of Oracle 11 for me is the new function result caching mechanism. Until now, making sure that a PL/SQL function gets executed only as many times as necessary was a black art. The new caching system makes that quite easy - here is how it works. Continue Reading »

No responses yet