github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

37signals / fast_remote_cache

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 86
    • 3
  • Source
  • Commits
  • Network (3)
  • Issues (0)
  • Downloads (0)
  • Wiki (1)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (1)
    • master ✓
  • Tags (0)
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

A faster version of Capistrano's remote_cache deployment strategy — Read more

  cancel

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

documentation, prepping for publication to github 
jamis (author)
Wed Sep 03 08:36:35 -0700 2008
commit  6dc16b790ad3e5cc20b11e429f69b12e24e53cd1
tree    8bf6cb049239c2ae58255b0bc6c0419318d5cabd
parent  27838e4e263b746ede3ca5ede0c950f4f4ab3baf
fast_remote_cache /
name age
history
message
file LICENSE Wed Sep 03 08:36:35 -0700 2008 documentation, prepping for publication to github [jamis]
file README.rdoc Wed Sep 03 08:36:35 -0700 2008 documentation, prepping for publication to github [jamis]
file init.rb Mon Jun 02 13:14:27 -0700 2008 Initial version of fast_remote_cache plugin [jamis]
directory lib/ Wed Sep 03 08:36:35 -0700 2008 documentation, prepping for publication to github [jamis]
directory recipes/ Wed Sep 03 08:36:35 -0700 2008 documentation, prepping for publication to github [jamis]
README.rdoc

Fast Remote Cache

The FastRemoteCache is a custom deployment strategy that specializes the standard RemoteCache strategy. It works just like the RemoteCache, but instead of actually copying the cache to the final release directory, it uses a custom "copy.rb" script to hard link the files. This allows the copy stage to be very fast.

For small applications, and especially for those that aren’t bundling vendor/rails, this won’t make much of a difference. But for large applications the speed-up will be significant.

Dependencies

  • Capistrano 2 or later (www.capify.org)

Assumptions

The FastRemoteCache, as the RemoteCache, assumes that your source repository is accessible from both your local (deploying) host, as well as the remote (target) hosts. If either of these is not true, you will not be able to use the FastRemoteCache strategy.

Furthermore, it assumes that you have Ruby (1.8.6, preferably) installed on the target machines. If it is not installed in a standard location, you can set the :ruby variable to the location of the ruby executable.

Usage

When using this with Rails applications, all you need to do is install this as a plugin in your application. Make sure your Capfile has a line like the following:

  Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }

It should be just before the line that loads the ‘config/deploy’ file. If that line is not there, add it (or rerun "capify .").

If you are not using this with a Rails application, you’ll need to explicitly load recipes/fast_remote_cache.rb in your Capfile.

Next, tell Capistrano to use the fast_remote_cache deployment strategy by putting the following line in your config/deploy.rb (or Capfile, if you aren’t deploying a Rails app):

  set :deploy_via, :fast_remote_cache

Lastly, if you want to exclude certain directories or files from being deployed, set the copy_exclude variable:

  set :copy_exclude, %w(test .git doc config/database.yml)

The copy_exclude array can also include glob patterns, if you want to get tricky.

Tips

For the fastest possible deploys:

  • Always deploy as the same user. If you’re part of a team where everyone can (and does) deploy, create a new user (e.g., "deploy") and set it up so that your team can all log in as this user. Make sure this user also has read access to your source code repository.
  • Avoid sudo if at all possible. set(:use_sudo, false), and then make sure that the deploy user has sufficient permissions to start and stop the mongrels, write to the necessary directories, etc.
  • Disable the "group_writable" setting: set(:group_writable, false). This is only necessary when you have multiple users deploying.
  • Don’t include Rails (or other large libraries) in your application. Yes, it is convenient to include them, but they bloat your app and make checkouts and copies much slower. You have to balance convenience in development versus speed of deployment. Find a compromise that works for you.

License

This code is released under the MIT license, and is copyright © 2008 by 37signals, LLC. Please see the accompanying LICENSE file for the full text of the license.

Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server