1
2
3
4
require 'rubygems'
require 'data_mapper'
require 'benchmark'
...

Ruby DataMapper threaded benchmark

by Kevin Williams, February 20, 2008 04:38, 3 refactorings, tagged with orm, datamapper, benchmark

third of three - slowest of...

267942571862781dd912de6482a35f46 Talk
1
2
3
4
require 'rubygems'
require 'sequel'
require 'benchmark'
...

Ruby Sequel threaded benchmark

by Kevin Williams, February 20, 2008 04:35, 1 refactoring, tagged with orm, sequel, benchmark

second of three, not as fas...

267942571862781dd912de6482a35f46 Talk
1
2
3
4
require 'rubygems'
require 'active_record'
require 'benchmark'
...

Ruby ActiveRecord threaded bench...

by Kevin Williams, February 20, 2008 04:33, No refactoring, tagged with orm, activerecord, benchmark

first of three benchmarks, ...

267942571862781dd912de6482a35f46 Talk
1
2
3
4
class SearchLet(Form):
    district = Field(widget=SelectMultiple(choices=DISTRICTS, required=False)
...

Python Django models search

by lbolognini, November 10, 2007 16:30, 1 refactoring, tagged with python, django, search, orm

I'm using the following cod...

D2ff155cd04fa175620d2f3495b11b08 Talk