Query View Searching string value with like codition

Hey Sonrobby,

The size of the view would indeed be significantly larger, but I am otherwise not aware of allowing a wildcard postfix search. Additionally, total_rows is part of the meta-data for the query, available as the third callback parameter:

.query(..., function(err, rows, meta) {
  console.log(meta.total_rows);
});

Cheers, Brett