1
0
forked from MTSR/mapserver

tiledb gc

This commit is contained in:
Thomas Rudin 2019-02-10 19:54:27 +01:00
parent bd630ef7d0
commit 75194b47f1

View File

@ -31,7 +31,12 @@ func getKey(pos *coords.TileCoords) []byte {
}
func (this *TileDB) GC() {
this.db.RunValueLogGC(0.7)
for {
err := this.db.RunValueLogGC(0.25)
if err != nil {
return
}
}
}
func (this *TileDB) GetTile(pos *coords.TileCoords) ([]byte, error) {