aboutsummaryrefslogtreecommitdiffstats
path: root/README.rdoc
diff options
context:
space:
mode:
authorNick Sieger <nick@nicksieger.com>2008-08-07 01:27:40 -0700
committerNick Sieger <nick@nicksieger.com>2008-08-29 14:12:11 -0500
commitfe575dd4a9f0fa0e71a89fae9f4a951a9fb36058 (patch)
treebeffe2d6830b32cf9b10050adaffb812c9140301 /README.rdoc
parent82fcd9d85fe245e8041f8d375175dde13688fce4 (diff)
downloadrails-fe575dd4a9f0fa0e71a89fae9f4a951a9fb36058.tar.gz
rails-fe575dd4a9f0fa0e71a89fae9f4a951a9fb36058.tar.bz2
rails-fe575dd4a9f0fa0e71a89fae9f4a951a9fb36058.zip
Nearing the finish line. Initial fixed-size connection pool implemented, more docs
Diffstat (limited to 'README.rdoc')
-rw-r--r--README.rdoc12
1 files changed, 1 insertions, 11 deletions
diff --git a/README.rdoc b/README.rdoc
index 15b909a159..6f94d14d8a 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -20,15 +20,5 @@ be more thread-safe, and to add connection pooling features.
Remaining tasks:
-- Fixed-size connection pool
-- Add checkin/checkout API
-- Add a #with_connection API that allows checkin/checkout of a connection outside of a provided block.
-
- Model.with_connection do |conn|
- Thread.new {
- Model.connection = conn
- # do something with conn
- }
- Model.connection.select ....
- end
+- Review and put the thing to real work.
- Look at whether existing clear_* or verify_* methods can be deprecated or removed.