Add FIXME for database cache issue

This commit is contained in:
Daniel 2021-09-17 22:01:20 +02:00
parent 442d9319e7
commit a01df19cd0

View file

@ -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)
}