Sha256: f696ee00f0fd340915c4f5ff9d48833b59cbb4a21de02ed84ccd3173be81092c

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 KB

Contents

= Taps -- simple database import/export app

A simple database agnostic import/export app to transfer data to/from a remote database.

== Usage: Server

  $ taps server postgres://localdbuser:localdbpass@localhost/dbname httpuser httppassword

== Usage: Client

When you want to pull down a database from a taps server

  $ taps pull postgres://dbuser:dbpassword@localhost/dbname http://httpuser:httppassword@example.com:5000

or when you want to push a local database to a taps server

  $ taps push postgres://dbuser:dbpassword@localhost/dbname http://httpuser:httppassword@example.com:5000

== Known Issues

* Blob data may not transfer properly, I suspect that SQLite3 is modifying some native ruby objects.
* Foreign Keys get lost in the schema transfer
* Large tables (>1 million rows with a large number of columns) get slower as the offset gets larger. This is due to it being inefficient having large offset values in queries.

== Meta

Maintained by Ricardo Chimal, Jr. (ricardo at heroku dot com)

Written by Ricardo Chimal, Jr. (ricardo at heroku dot com) and Adam Wiggins (adam at heroku dot com)

Early research and inspiration by Blake Mizerany

Released under the MIT License: http://www.opensource.org/licenses/mit-license.php

http://github.com/ricardochimal/taps

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
ricardochimal-taps-0.2.3 README.rdoc
ricardochimal-taps-0.2.4 README.rdoc
taps-0.2.4 README.rdoc
taps-0.2.3 README.rdoc