diff --git a/database/interface.go b/database/interface.go index d3d18fb..74a6dbe 100644 --- a/database/interface.go +++ b/database/interface.go @@ -530,6 +530,10 @@ func (i *Interface) Query(q *query.Query) (*iterator.Iterator, error) { return nil, err } + // FIXME: + // Flush the cache before we query the database. + // i.FlushCache() + return db.Query(q, i.options.Local, i.options.Internal) }