Products | Versions |
---|---|
TIBCO ActiveSpaces | - |
Not Applicable | - |
Resolution:
Description:
===========
Does Active spaces support a nested entity to be cached and Array?
Environment:
===========
ActiveSpaces 2.0.* ,ActiveSpaces 2.1.*
All operating systems
Resolution:
===========
ActiveSpaces supports the following field types to store in space.
BLOB, BOOLEAN, CHAR, DATETIME, DOUBLE, FLOAT, INTEGER, LONG, SHORT, STRING.
ActiveSpaces has (JAVA, .Net , C) APIs. Using those APIs you can achieve nested entities to be stored in cache. You can use a BLOB field to store tuple data (serialized objects) in the space. If the nested entity has simple data types (BOOLEAN, CHAR, DATETIME, DOUBLE, FLOAT, INTEGER, LONG, SHORT, STRING), tuple.toString() will return JSON style representation of data ({Tuple{Colum1=value1,Colum2=value2}}).This JSON format can be stored in entity as a STRING attribute.
The current version of ActiveSpaces does not have Array support.