harrisj / dm-dbslayer forked from krobertson/dm-dbslayer
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sun May 18 23:28:42 -0700 2008 | |
| |
MIT-LICENSE | Sun May 18 23:28:42 -0700 2008 | |
| |
README.textile | Sun May 18 23:28:42 -0700 2008 | |
| |
Rakefile | ||
| |
TODO | Sun May 18 23:28:42 -0700 2008 | |
| |
lib/ | ||
| |
patch/ | Sun May 18 23:31:23 -0700 2008 | |
| |
spec/ |
DBSlayer DataMapper Adapter
DBSlayer is a HTTP-based front end for MySQL databases. It allows you to abstract away your database layer over a fast,
lightweight web server that speaks JSON.
DBSlayer offers a lot of possibilities in high-load environments by centralizing all DB connections, improving failover and
load balancing, and has many future possibilities centered around easy sharding, monitoring, and more.
This module allows DataMapper to speak to a DBSlayer enabled database. It is currently targeting DataMapper v0.9.
Code
The code is available at Github:
git clone git://github.com/krobertson/dm-dbslayer.gitTo install it, just run the following:
rake installUsage
To set up the adapter, just use the following in your code:
DataMapper.setup(:default, ‘dbslayer://localhost’)You don’t specify the database, as it is normally configured within DBSlayer itself. You just need to configure the host.
By default, it will use port 9090.
If you are using a database.yml, you should use:
development: adapter: dbslayer host: localhostSpecial Setup
Currently, DBSlayer requires a patch to work properly with DataMapper. By default, DBSlayer won’t return the number
of affected rows or insert ID for new records. These are needed by DataMapper after creating a record, and to determine
if a save operation succeeded. The patch is included in the ‘patch’ directory.

