Orange is my favorite color

Archive for 2008/10


Found something out yesterday that I thought was interesting and a little surprising. I have my main application, let’s call it “www”. I am creating a new codebase called “api” that will be a RESTful API for third-party consumers (more on that later). I want to have the two applications share the same [...]

Transfer’s nifty cache causes real problems if you’re running a cluster as data changes without notifying other nodes. Over time, one server may report value A while another reports value B and the only way to correct this is to turn caching off. Boo! The solution is TransferSync, a recent project by [...]

I was reading about reinit troubles on the Coldspring users mailing list today. It made me think this might be an interesting meme to see how many ways people restart their applications.
My Routine
I run a Model-Glue, Coldspring and Transfer application. Here’s how I restart my application:
<!– see if we should restart the [...]

Have you had your application in production for awhile? Maybe you have a little traffic now and you’re starting to see some places where performance could be better? The easiest place to find gains that will benefit your entire application is usually in the database. Because the schema tends to be [...]

Let’s talk about being an e-commerce company. We have this fun thing called PCI DSS that has a few hundred security and procedural requirements for anyone taking credit cards. Then we have third party integrations like product fulfillment that require us, as the intermediary, to pass around the credit card number to complete [...]

The title is a long way of saying I have domain.com and I also have domainS.com, plural, in case people mistype the name. If someone hits my site as domainS.com, I want to automatically correct it to be domain.com to maintain my branding. This is pretty straightforward to fix with your <VirtualHost> and [...]