Can I plumb a FlumeQuery into a FlumeReduce?
Right now my FlumeReduce takes an age to rescan the whole log, but really I want it to index from the data already possible to filter from a FlumeQuery
What I have:
// FlumeQuery
var query = sbot._flumeUse(
'geoDB',
FlumeQuery(3, {indexes:[
{key: 'pos', value: [['value', 'content', 'x'], ['value', 'content', 'y'], ['value', 'sequence']]}
]})
)
// FlumeReduce
var reduce = ssbServer._flumeUse('actualFriends', flumeView(
1.3, // version
reduceData,
mapToData,
null, //codec
initialState()
))
So can I get some kinda flume-thing from the first one and plug it into the second one so I can filter out 99.9% of the posts?