Skip to content

Commit

Permalink
adding an example of namespacing for the redis adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
natesholland committed Jun 3, 2015
1 parent 825221a commit d5939e3
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions examples/redis/namespaced.rb
@@ -0,0 +1,48 @@
require 'pp'
require 'pathname'
require 'logger'
begin
require 'redis-namespace'
rescue LoadError
puts 'you must have redis-namespace gem installed'
exit 1
end

root_path = Pathname(__FILE__).dirname.join('..').expand_path
lib_path = root_path.join('lib')
$:.unshift(lib_path)

require 'flipper/adapters/redis'
options = {url: 'redis://127.0.0.1:6379'}
if ENV['BOXEN_REDIS_URL']
options[:url] = ENV['BOXEN_REDIS_URL']
end
client = Redis.new(options)
namespaced_client = Redis::Namespace.new(:flipper_namespace, redis: client)
adapter = Flipper::Adapters::Redis.new(namespaced_client)
flipper = Flipper.new(adapter)

# Register a few groups.
Flipper.register(:admins) { |thing| thing.admin? }
Flipper.register(:early_access) { |thing| thing.early_access? }

# Create a user class that has flipper_id instance method.
User = Struct.new(:flipper_id)

flipper[:stats].enable
flipper[:stats].enable_group :admins
flipper[:stats].enable_group :early_access
flipper[:stats].enable_actor User.new('25')
flipper[:stats].enable_actor User.new('90')
flipper[:stats].enable_actor User.new('180')
flipper[:stats].enable_percentage_of_time 15
flipper[:stats].enable_percentage_of_actors 45

flipper[:search].enable

print 'all keys: '
pp client.keys
# all keys: ["stats", "flipper_features", "search"]
puts

puts 'notice how all the keys are namespaced'

0 comments on commit d5939e3

Please sign in to comment.