mirror of
https://github.com/mindoc-org/mindoc.git
synced 2026-01-23 13:22:13 +08:00
14 lines
286 B
Go
14 lines
286 B
Go
package engine
|
|
|
|
func (engine *Engine) NumTokenIndexAdded() uint64 {
|
|
return engine.numTokenIndexAdded
|
|
}
|
|
|
|
func (engine *Engine) NumDocumentsIndexed() uint64 {
|
|
return engine.numDocumentsIndexed
|
|
}
|
|
|
|
func (engine *Engine) NumDocumentsRemoved() uint64 {
|
|
return engine.numDocumentsRemoved
|
|
}
|