Click or drag to resize

LiteDictionary Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
An implementation of IDictionary that is optimal (in terms of both size and speed) for very small sets of data but still works excellently with large sets of data.
Inheritance Hierarchy
SystemObject
  Tangosol.UtilLiteDictionary

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public class LiteDictionary : IDictionary, 
	ICollection, IEnumerable

The LiteDictionary type exposes the following members.

Constructors
  NameDescription
Public methodLiteDictionary
Constructs a LiteDictionary.
Public methodLiteDictionary(IDictionary)
Construct a LiteDictionary with the same mappings as the given dictionary.
Top
Properties
  NameDescription
Public propertyCount
Gets the number of elements contained in this dictionary.
Public propertyIsEmpty
Gets true if this dictionary contains no key-value mappings.
Public propertyIsFixedSize
Gets a value indicating whether the IDictionary object has a fixed size.
Public propertyIsReadOnly
Gets a value indicating whether the IDictionary object is read-only.
Public propertyIsSynchronized
Gets a value indicating whether access to the ICollection is synchronized (thread safe).
Public propertyItem
Returns the value to which this dictionary maps the specified key.
Public propertyKeys
Gets a collection containing the keys of the LiteDictionary.
Public propertySyncRoot
Gets an object that can be used to synchronize access to the ICollection.
Public propertyValues
Gets a collection containing the values in the LiteDictionary.
Top
Methods
  NameDescription
Public methodAdd
Adds an element with the provided key and value to the IDictionary object.
Protected methodCheckShrinkFromOther
After a mutation operation has reduced the size of an underlying dictionary, check if the delegation model should be replaced with a more size-efficient storage approach, and switch accordingly.
Public methodClear
Removes all elements from the dictionary.
Public methodContains
Returns true if this dictionary contains a mapping for the specified key.
Public methodCopyTo
Copies the elements of the ICollection to an Array, starting at a particular index.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator
Returns an IEnumerator object for this LiteDictionary.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodInstantiateDictionary
Instantiate an IDictionary object to store entries in once the "lite" threshold has been exceeded.
Protected methodInstantiateEntry
Instantiate a DictionaryEntry.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemove
Removes the mapping for this key from this dictionary if present.
Public methodRemoveEx
Removes the mapping for this key from this map if present.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

This implementation is not thread-safe.

The LiteDictionary implementation switches at runtime between several different sub-implementations for storing the IDictionary of objects, described here:

  1. "empty dictionary" - a dictionary that contains no data;
  2. "single entry" - a reference directly to a single dictionary entry;
  3. "object[]" - a reference to an array of entries; the item limit for this implementation is determined by the THRESHOLD constant;
  4. "delegation" - for more than THRESHOLD items, a dictionary is created to delegate the dictionary management to; sub-classes can override the default delegation class Hashtable by overriding the factory method InstantiateDictionary.

The LiteDictionary implementation supports the null key value.

See Also