Manual Insertion

By default, every event that comes into a stream with an event cache gets put into the event cache.

You can explicitly indicate this default behavior with the auto option:
eventCache(instream, auto) e0;
            
You can also put events into an event cache if they are marked manual:
eventCache(instream, manual) e0;
            
Use the function insertCache to do this.