fifo, is the actual cache containing a limited set of copies of row
data so the data in fifo, is always immediately accessible to the gui
thread, with zero delay as you scroll down the table view, fifo is filled
and refilled with data queried from the database
the cache can be queried either by the row number or by the primary
key of the object represented by the row data.
|
__init__(self,
max_entries)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
delete_by_entity(self,
entity)
Remove everything in the cache related to an entity instance returns
the row at which the data was stored if the data was in the cache,
return None otherwise |
source code
|
|
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|