embeddingRedisQueue implements EmbeddingQueue using Redis Streams
| 62 | |
| 63 | // embeddingRedisQueue implements EmbeddingQueue using Redis Streams |
| 64 | type embeddingRedisQueue struct { |
| 65 | rdb redis.Cmdable |
| 66 | opts WorkerOptions |
| 67 | workersMu sync.Mutex |
| 68 | workers map[int64]*eidWorkerPool // per-eid pool |
| 69 | } |
| 70 | |
| 71 | type eidWorkerPool struct { |
| 72 | eid int64 |
nothing calls this directly
no outgoing calls
no test coverage detected