Is it possible to create a table with a primary key and a Set as a secondary column that would be like a list in a value of a hashtable?
something like this:
create table T (id int primary key, list HashSet )
where the list would hold all properties related to the primary key that happened over a window size.
EDIT:
This is the output I get. What I want is to keep count of unique Occurences arriving at id 1,2 and 3. If Occurence 2 arrived 3 times at ID 1 I still only want 1 as unique, not 3
{unique=3, id=1}
{unique=3, id=2}
{unique=4, id=3}
****************
In java it is no problem, but I dont understand how to implement this in Esper. Im not even sure if using tables is the correct approach.