Module: Redis::Bitops
- Extended by:
- Bitops
- Included in:
- Bitops
- Defined in:
- lib/redis/bitops/bitmap.rb,
lib/redis/bitops/configuration.rb,
lib/redis/bitops/sparse_bitmap.rb,
lib/redis/bitops/queries/unary_operator.rb,
lib/redis/bitops/queries/binary_operator.rb,
lib/redis/bitops/queries/lazy_evaluation.rb,
lib/redis/bitops/queries/tree_building_helpers.rb,
lib/redis/bitops/queries/materialization_helpers.rb
Defined Under Namespace
Modules: Queries Classes: Bitmap, Configuration, SparseBitmap
Instance Attribute Summary collapse
-
#configuration ⇒ Object
Returns the value of attribute configuration.
Instance Method Summary collapse
-
#configure {|configuration| ... } ⇒ Object
Call this method to modify defaults in your initializers.
Instance Attribute Details
#configuration ⇒ Object
Returns the value of attribute configuration.
27 28 29 |
# File 'lib/redis/bitops/configuration.rb', line 27 def configuration @configuration end |
Instance Method Details
#configure {|configuration| ... } ⇒ Object
Call this method to modify defaults in your initializers.
31 32 33 34 |
# File 'lib/redis/bitops/configuration.rb', line 31 def configure self.configuration ||= Configuration.new yield(configuration) end |