Videos tagged with eCommerce
The Commerce Starter Kit for ASP.NET 2.0 is a free, open source application built from the ground up on ASP.NET 2.0. It includes a storefront, shopping cart, order management system and many other features required to sell products online. It comes pre-integrated with PayPal Pro and can be extended to support other payment systems as well. In this presentation, Rob Conery, the creator of the Co...
RailsLab Scaling Rails: Episode #13 - Jim Gochee & Advanced RPM
Jim Gochee is the VP of Engineering at New Relic, where he’s helped shape RPM, their server monitoring tool. After asking him his recommendations for Scaling Rails, we take a closer look at some of the advanced features of New Relic’s RPM tool. If you haven’t seen some of the upper tier performance monitoring features of RPM, prepared to be impressed.
RailsLab Scaling Rails: Episode #12 - Jesse Newland & Deployment
Jesse Newland works at Rails Machine, where he’s helped scale many Rails applications. In this episode we ask him for 3 tips to help us Scale our applications. We’re then going to take a closer look at one of his recommendations: how to properly deploy a Rails app.
RailsLab Scaling Rails: Episode #11 - Advanced HTTP Caching
Once you have a firm grasp of the 3 header tags we talked about in the previous episode (max-age, etags, and last_modified) you can start to take advantage of reverse proxy caches. In this episode we let you know exactly what a proxy cache is, and how you might use it to effectively scale a dynamic website to millions of users.
RailsLab Scaling Rails: Episode #10 - Client-side Caching
Once you’ve done all the server side caching you can possibly do, you might want to take a look back at the client side of things to do some advanced client-side caching. In this episode we’ll show how to effectively use the max-age, etag, and last_modified helpers to scale your application.
RailsLab Scaling Rails: Episode #9 - Taylor Weibley & Databases
Taylor Weibley is the director of support at Engine Yard, where he’s seen plenty of poorly scaling Rails applications. In this first interview he lets us know about three things we can do today to help our application performance. After his interview I go through some common ways to Scale your Database layer.
RailsLab Scaling Rails: Episode #8 - Memcached
Most of the big Web 2.0 websites rely on memcached (pronounced "Memcache-Dee") to scale, even the ones not using Rails. In this screencast you’ll learn how easy it is to use memcached in your Rails application, and how to do low level query caching for websites where you have highly customized layouts.
RailsLab Scaling Rails: Episode #7 - Fragment Caching
If there’s no way to cache the entire content of a page, then odds are you can probably cache smaller pieces of it. This is where fragment caching comes in, allowing you to cache common parts of a webpage which are resource intensive and may be used accross mulitple pages.
RailsLab Scaling Rails: Episode #6 - Action Caching
If you can’t fully page cache your Rails action, when your next best choice is using Action Caching. Action Caching allows you to run filters such as authorization on each request before they’re able to see the cached content of the page.
RailsLab Scaling Rails: Episode #5 - Advanced Page Caching
Page caching is pretty simple to do, but what happens when you need pagination or dynamic data on your pages? Can you still use page caching? In this screencast we’ll start out showing how to solve these problems and finish up with my first rant of the series "Login status is overrated."