func (manager *MemoryLines) Find(id LineId) (*Line, bool) {
    manager.mutex.RLock()
    line, ok := manager.byIdentifier[id]
    manager.mutex.RUnlock()