-
Notifications
You must be signed in to change notification settings - Fork 9
/
wire.go
37 lines (29 loc) · 1019 Bytes
/
wire.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package redis
import (
"context"
"errors"
"flag"
"fmt"
"github.com/go-redis/redis/v8"
"namespacelabs.dev/foundation/std/go/core"
)
var redisServerEndpoint = flag.String("redis_endpoint", "", "Redis endpoint address.")
func ProvideRedis(ctx context.Context, args *RedisArgs, deps ExtensionDeps) (*redis.Client, error) {
if *redisServerEndpoint == "" {
return nil, errors.New("redis_endpoint is required")
}
client := redis.NewClient(&redis.Options{
Network: "tcp",
Addr: *redisServerEndpoint,
Password: "",
DB: int(args.Database),
})
// Asynchronously wait until a database connection is ready.
deps.ReadinessCheck.RegisterFunc(fmt.Sprintf("redis/%s", core.InstantiationPathFromContext(ctx)), func(ctx context.Context) error {
return client.Ping(ctx).Err()
})
return client, nil
}