Wanted to check about Triggers feature in Cassandra. Can someone please provide an example for creating Trigger.
From this blog, http://www.datastax.com/dev/blog/whats-new-in-cassandra-2-0-prototype-triggers-support
To create a trigger, you must first build a jar with a class implementing the ITrigger
interface and put it into the triggers directory on every node, then perform a CQL3 CREATE TRIGGER
request to tie your trigger to a Cassandra table (or several tables).
As per this info, Triggers in Cassandra are only applicable for Java based applications?