xgem is a fast and simple supplement to RubyGems. You will notice a significant drop in the amount of time it takes Ruby to startup.
Here's a demo with Rails:
How awesome is that? Read on for more details...
RubyGems is a good bit of software. It does a lot of things and usually serves its users well. Unfortunately, RubyGems imposes a nasty peformance penalty with regard to startup times.
When you first require a gem, RubyGems does a full scan of all installed gems which involves loading and evaluating the gemspecs of all installed gems. Once it has scanned all installed gems, it must ask each gem if it provides the file you tried to require.
xgem caches the require paths provided by each installed gem. This is maintained in a Hash mapping require path to the full path of the file on the filesystem.
In practise, this can dramatically improve the time it takes for Ruby to start up. Take this example script which prints out the installed version of the Yajl gem:
require "yajl/version"
puts Yajl::VERSION
When run normally with RubyGems' require
, this script takes about 280ms to run on my machine. When run with xgem-ruby
, that time drops down to just 70ms.
So you've decided you want to give xgem a shot? Cool!
xgem requires Ruby 1.9.2 or greater. If you're still on 1.8, you should probably consider upgrading. Otherwise, open a Terminal window and run these commands:
gem install xgem
xgem install
The second xgem install
command is required to overcome some limitations in RubyGems. For performance reasons, xgem will overwrite the executable wrapper RubyGems creates with its own custom shell script. xgem install
will also do an initial cache refresh for you. Rest assured that nothing xgem install
does can't be undone by uninstalling xgem through RubyGems.
RubyGems does a lot under the covers. One thing it does is managing multiple installed versions of the same gem. xgem doesn't currently do this.
You will also need to run xgem refresh
every time you install or uninstall a gem. This allows xgem to update its cache.
- Play nicely with multiple installed versions of the same gem
- Add a post_install hook to RubyGems to avoid the need to run
xgem refresh
- Probably a lot more. If you run into troubles with xgem, please file an issue and let me know.
Simplified BSD