I’m very used to and (somewhat) pleased with how Routes let’s you set up REST endpoints, so I was very irked to discover that Tipfy does not support the notion of a resource. Routes will let you do something like map = routes.Mapper(…) map.resource(’teapot’ , ‘teapots’) which will create a mapping like GET /teapots -> controllers.teapots.TeapotController.get() [...]
Category Archives: programming
Modern Memcached Client
22-Oct-09After a year or so of dormancy I’m finally inspired to write a blog post. This is my first post ever, so please excuse the coarseness. Plausibly enough, this one will be about Memcached, specifically how I implemented a client for TV.com, where I currently work. The existing client was written in 2003 in PHP, [...]