Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

The AssociativeStorage operator stores streaming data in an associative storage.

Parameter

  • StorageName: The unique name of the associative storage.
  • Hierarchy: The names of the attributes in the schema holding this information during runtime and as thus, the depth of the hierarchy of the storage.
  • Index: The names of the attributes holding the values for the index during runtime and as thus, the dimension of the associative storage. Two and three dimensional storages are currently supported.
  • Size: The size of the associative storage in each dimension.
  • Value: The name of the attribute in the schema holding the value that should be stored in the associative storage.

Example

Code Block
languagejs
titleAssociativeStorage example
storage = ASSOCIATIVESTORAGE({
 storageName='MyStorage',
 hierarchy=['house', 'household'],
 index=['time','day'],
 sizes=[288,7],
 value='value'
 }, in)