This post originated from an RSS feed registered with Ruby Buzz
by Francis Hwang.
Original Post: Lafcadio 0.8.0
Feed Title: Francis Hwang's site: ruby
Feed URL: http://fhwang.net/syndicate/ruby.atom
Feed Description: Author & artist Francis Hwang's personal site.
I’ve just released Lafcadio 0.8.0, the new production release. It contains more than 40 new features and bugfixes. And it adds lots of convenience methods to DomainObject, richer query inference operators, real-time query subset caching—all in a slimmer codebase.
Some new features are:
Better operators for query inference:
class User < Lafcadio::DomainObject
strings :fname, :lname, :email
end
maybe_koreans = User.get { |u| u.lname.in( 'Park', 'Lee', 'Hwang' ) }
no_fname = User.get { |u| u.fname.nil? }
As always, these queries work both against MySQL and against a much faster, in-memory mock object store for use in testing.
Query Caching:
Everytime you run a select against the DB, Lafcadio caches the results in memory. Then, if you later run a second select that is a subset of the first, Lafcadio detects it, figures out what it’s a subset of, filters out the results in memory, and returns you the results. This all happens transparently.
What does this mean? It means a significantly faster app, because if you run these three queries:
select * from users where lname = 'Smith'
select * from users where lname = 'Smith' and fname like '%john%'
select * from users where lname = 'Smith' and email like '%hotmail%'
Lafcadio will only ask MySQL for the results for the first select statement, and do the rest for you without using the DB connection.