mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-23 17:53:05 +02:00
19 lines
331 B
Go
19 lines
331 B
Go
package registry
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/asim/go-micro/v3/selector"
|
|
)
|
|
|
|
// Set the registry cache ttl
|
|
func TTL(t time.Duration) selector.Option {
|
|
return func(o *selector.Options) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, "selector_ttl", t)
|
|
}
|
|
}
|