how can i retrieve largest value from a particular column in Cassandra ? i am storing tag name as name and number of clicks as value in Cassandra. Now i need to find out what are the most popular tags(based on the click)? Please Help me
example :
supercolumn : movies columnname : "matrix" value : 10(number of clicks)
supercolumn : movies columnname : "titanic" value : 0(number of clicks)
supercolumn : movies columnname : "avatar" value : 5(number of clicks)
now i need to get the result like matrix,avatar and titanic respectively(based on the value desc)