Devo is happy to present Platform 8.6.0! This release has some highly anticipated features to provide you with new, powerful ways to search data, experience the platform and new operators for you to craft even better data search queries!
Deployment Information
- Release Thursday December 14 at 11am CET
- Duration: 2 Hours
- Customer Impact: None
Region | Status |
---|---|
CA | Released |
US | Released |
EU | Released |
APAC | Released |
Table of Contents
New Features
New LINQ Operators
Three new LINQ complex type operators are now available.
- array : an array is a collection of sorted elements of any type (repeated or not).
- set : a set is a collection of unique (non-repeated) elements of any type whose order is indifferent.
- map : a map is a collection of key-value pairs whose order is indifferent.
Summary of Complex Type Operations
array | set | map | Mixed Types |
---|---|---|---|
mkarray or y] | mkset or {} | mkmap or {:} | array (Server Operation) |
isempty | isempty | isempty | set |
length/size | length/size | length/size | bag |
has/in | has/in | has/in | |
add | add | add | |
join | join (Server Operation) | ||
at or t] a] | at or <] >] | ||
band | band | ||
sub | sub | ||
Indexof dropnulls sort reverse sum | keys values (Server Operation) |
Server Operations are computed in the backend. When used after a grouping it will automatically turn on Server Mode.
Full Breakdown of the Complex Operators here: