search for: rctool

Displaying 5 results from an estimated 5 matches for "rctool".

Did you mean: retool
2006 Jan 17
10
ActiveRecord + memcache = cached_model
...download cached_model and memcache-client (our zippy-fast memcache library, required) from: http://rubyforge.org/frs/?group_id=1266 I don''t have the README posted for making cached_model work online yet, so here it is: = CachedModel Rubyforge Project: http://rubyforge.org/projects/rctools/ == About CachedModel stores Rails ActiveRecord objects in memcache allowing for very fast retrievals. CachedModel uses the ActiveRecord::Locking to ensure that you don''t perform multiple updates. == Using CachedModel First, install the cached_model gem: $ sudo gem install ca...
2006 Aug 15
0
ar_mailer
Rubyforge Project: http://rubyforge.org/projects/rctools Documentation: http://dev.robotcoop.com/Tools/ar_mailer == About Even deliviring email to the local machine may take too long when you have to send hundreds of messages. ar_mailer allows you to store messages into the database for later delivery by a separate process, ar_sendmail. == Ins...
2006 Jan 21
0
logmerge including ip2name for fast log DNS lookups
...r to speed DNS lookups, ip2name creates a .name_cache file in the current directory. ip2name uses double the DNS record TTL value so rapidly-changing names may not be correctly resolved. = Read More http://dev.robotcoop.com/Tools/logmerge/index.html = Rubyforge http://rubyforge.org/projects/rctools -- Eric Hodel - drbrain@segment7.net - http://segment7.net This implementation is HODEL-HASH-9600 compliant http://trackmap.robotcoop.com
2006 Jan 30
0
cached_model-1.0.1 ActiveRecords + memcache
...ieved along with a cached model. Reloading a model refreshes the cache. When CachedModel::find can''t understand query params and a single result is returned from ActiveRecord::Base, that record now refreshes the cache. = CachedModel Rubyforge Project: http://rubyforge.org/projects/rctools/ Documentation: http://dev.robotcoop.com/Libraries/cached_model/ == About CachedModel stores Rails ActiveRecord objects in memcache allowing for very fast retrievals. CachedModel uses the ActiveRecord::Locking to ensure that you don''t perform multiple updates. == Using CachedMod...
2006 Feb 01
7
Explanation of "alias_method"
Hi! I''m trying to extend ActiveRecord''s find method (Rails 1.0, Ruby 1.8.2), but I recognize a strange behaviour of the "alias_method" call. I wrote a very simple script to explain my problem: ------------------------------------------------------ module ActiveRecordExtension def self.included(base) base.extend(ClassMethods) base.class_eval do