ThreadVariables
This gem provides methods to access thread local variables with a ruby trunk compatible
API. It also provides an implementation of thread local variables for ruby 1.9, since ruby
1.9 made thread locals fiber local. This change in semantics can lead to surprising
results when accessing thread locals from enumerators.
See http://bugs.ruby-lang.org/issues/7097
Installation
Add this line to your application's Gemfile:
gem 'thread_variables'
And then execute:
$ bundle
Or install it yourself as:
$ gem install thread_variables
Usage
Basic interface: (this is the native code interface for ruby trunk)
require "thread_variables"
Thread.current.thread_variable_set :foo, 5
Thread.current.thread_variable_get :foo
Thread.current.thread_variable? :foo
Thread.current.thread_variables
Convenience interface: (proxied access to native interface)
require "thread_variables/access"
Thread.current.locals[:foo] = 5
Thread.current.locals[:foo]
Thread.current.locals.key?(:foo)
Thread.current.locals.keys
Especially useful for the ||= pattern:
Thread.current.locals[:counter] ||= 0
Thread.current.locals[:counter] += 1
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request