Is it possible to use the filter command with a secondary index? If I have no secondary indexes perform the query:
r.db('test').table('first').filter(r.row('col2').eq(8302))
Then create a secondary index on 'col2' and rerun the query, it takes the exact same amount of time. I know I can use 'getAll' and pass in an index and it is much faster but was hoping to have the filter command make use of it as well.