Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Junrey Beduya

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

ActiveRecord: cache column information

// Cache the column information so that no more query will be
// sent to the server thereafter

class ActiveRecord::Base
	
	@@_cached_columns = {}
	class << self
		
		alias :old_columns :columns
		
		def columns
			return @@_cached_columns[table_name] if @@_cached_columns[table_name]
			@@_cached_columns[table_name] = old_columns
		end
		
	end
	
end
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS