# redis-namespace **Repository Path**: mirrors_weppos/redis-namespace ## Basic Information - **Project Name**: redis-namespace - **Description**: This gem adds a Redis::Namespace class which can be used to namespace Redis keys. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README redis-namespace --------------- Requires the redis gem. Namespaces all Redis calls. ``` ruby r = Redis::Namespace.new(:ns, :redis => @r) r['foo'] = 1000 ``` This will perform the equivalent of: redis-cli set ns:foo 1000 Useful when you have multiple systems using Redis differently in your app. Installation ============ $ gem install redis-namespace Testing ======= $ bundle install $ rake Author ===== Chris Wanstrath :: chris@ozmm.org Terence Lee :: hone02@gmail.com