Class: LaunchDarkly::BigSegmentsConfig
- Inherits:
-
Object
- Object
- LaunchDarkly::BigSegmentsConfig
- Defined in:
- lib/ldclient-rb/config.rb
Overview
Configuration options related to Big Segments.
Big Segments are a specific type of segments. For more information, read the LaunchDarkly documentation: docs.launchdarkly.com/home/users/big-segments
If your application uses Big Segments, you will need to create a BigSegmentsConfig that at a minimum specifies what database integration to use, and then pass the BigSegmentsConfig object as the big_segments parameter when creating a Config.
Constant Summary collapse
- DEFAULT_CONTEXT_CACHE_SIZE =
1000- DEFAULT_CONTEXT_CACHE_TIME =
5- DEFAULT_STATUS_POLL_INTERVAL =
5- DEFAULT_STALE_AFTER =
2 * 60
Instance Attribute Summary collapse
-
#context_cache_size ⇒ Integer
(also: #user_cache_size)
readonly
The maximum number of contexts whose Big Segment state will be cached by the SDK at any given time.
-
#context_cache_time ⇒ Float
(also: #user_cache_time)
readonly
The maximum length of time (in seconds) that the Big Segment state for a context will be cached by the SDK.
-
#stale_after ⇒ Float
readonly
The maximum length of time between updates of the Big Segments data before the data is considered out of date.
-
#status_poll_interval ⇒ Float
readonly
The interval (in seconds) at which the SDK will poll the Big Segment store to make sure it is available and to determine how long ago it was updated.
-
#store ⇒ LaunchDarkly::Interfaces::BigSegmentStore
readonly
The implementation of Interfaces::BigSegmentStore that will be used to query the Big Segments database.
Instance Method Summary collapse
-
#initialize(store:, context_cache_size: nil, context_cache_time: nil, status_poll_interval: nil, stale_after: nil) ⇒ BigSegmentsConfig
constructor
Constructor for setting Big Segments options.
Constructor Details
#initialize(store:, context_cache_size: nil, context_cache_time: nil, status_poll_interval: nil, stale_after: nil) ⇒ BigSegmentsConfig
Constructor for setting Big Segments options.
633 634 635 636 637 638 639 |
# File 'lib/ldclient-rb/config.rb', line 633 def initialize(store:, context_cache_size: nil, context_cache_time: nil, status_poll_interval: nil, stale_after: nil) @store = store @context_cache_size = context_cache_size.nil? ? DEFAULT_CONTEXT_CACHE_SIZE : context_cache_size @context_cache_time = context_cache_time.nil? ? DEFAULT_CONTEXT_CACHE_TIME : context_cache_time @status_poll_interval = status_poll_interval.nil? ? DEFAULT_STATUS_POLL_INTERVAL : status_poll_interval @stale_after = stale_after.nil? ? DEFAULT_STALE_AFTER : stale_after end |
Instance Attribute Details
#context_cache_size ⇒ Integer (readonly) Also known as: user_cache_size
The maximum number of contexts whose Big Segment state will be cached by the SDK at any given time.
648 649 650 |
# File 'lib/ldclient-rb/config.rb', line 648 def context_cache_size @context_cache_size end |
#context_cache_time ⇒ Float (readonly) Also known as: user_cache_time
The maximum length of time (in seconds) that the Big Segment state for a context will be cached by the SDK.
660 661 662 |
# File 'lib/ldclient-rb/config.rb', line 660 def context_cache_time @context_cache_time end |
#stale_after ⇒ Float (readonly)
The maximum length of time between updates of the Big Segments data before the data is considered out of date.
677 678 679 |
# File 'lib/ldclient-rb/config.rb', line 677 def stale_after @stale_after end |
#status_poll_interval ⇒ Float (readonly)
The interval (in seconds) at which the SDK will poll the Big Segment store to make sure it is available and to determine how long ago it was updated.
672 673 674 |
# File 'lib/ldclient-rb/config.rb', line 672 def status_poll_interval @status_poll_interval end |
#store ⇒ LaunchDarkly::Interfaces::BigSegmentStore (readonly)
The implementation of Interfaces::BigSegmentStore that will be used to query the Big Segments database.
644 645 646 |
# File 'lib/ldclient-rb/config.rb', line 644 def store @store end |