redis

package
v1.45.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 17, 2025 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Overview

Package redis is a generated GoMock package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MockRedisRepository

type MockRedisRepository struct {
	// contains filtered or unexported fields
}

MockRedisRepository is a mock of RedisRepository interface.

func NewMockRedisRepository

func NewMockRedisRepository(ctrl *gomock.Controller) *MockRedisRepository

NewMockRedisRepository creates a new mock instance.

func (*MockRedisRepository) Del

func (m *MockRedisRepository) Del(arg0 context.Context, arg1 string) error

Del mocks base method.

func (*MockRedisRepository) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockRedisRepository) Get

func (m *MockRedisRepository) Get(arg0 context.Context, arg1 string) (string, error)

Get mocks base method.

func (*MockRedisRepository) Incr added in v1.45.0

func (m *MockRedisRepository) Incr(arg0 context.Context, arg1 string) int64

Incr mocks base method.

func (*MockRedisRepository) Set

func (m *MockRedisRepository) Set(arg0 context.Context, arg1, arg2 string, arg3 time.Duration) error

Set mocks base method.

func (*MockRedisRepository) SetNX added in v1.45.0

func (m *MockRedisRepository) SetNX(arg0 context.Context, arg1, arg2 string, arg3 time.Duration) (bool, error)

SetNX mocks base method.

type MockRedisRepositoryMockRecorder

type MockRedisRepositoryMockRecorder struct {
	// contains filtered or unexported fields
}

MockRedisRepositoryMockRecorder is the mock recorder for MockRedisRepository.

func (*MockRedisRepositoryMockRecorder) Del

func (mr *MockRedisRepositoryMockRecorder) Del(arg0, arg1 any) *gomock.Call

Del indicates an expected call of Del.

func (*MockRedisRepositoryMockRecorder) Get

func (mr *MockRedisRepositoryMockRecorder) Get(arg0, arg1 any) *gomock.Call

Get indicates an expected call of Get.

func (*MockRedisRepositoryMockRecorder) Incr added in v1.45.0

func (mr *MockRedisRepositoryMockRecorder) Incr(arg0, arg1 any) *gomock.Call

Incr indicates an expected call of Incr.

func (*MockRedisRepositoryMockRecorder) Set

func (mr *MockRedisRepositoryMockRecorder) Set(arg0, arg1, arg2, arg3 any) *gomock.Call

Set indicates an expected call of Set.

func (*MockRedisRepositoryMockRecorder) SetNX added in v1.45.0

func (mr *MockRedisRepositoryMockRecorder) SetNX(arg0, arg1, arg2, arg3 any) *gomock.Call

SetNX indicates an expected call of SetNX.

type RedisConsumerRepository

type RedisConsumerRepository struct {
	// contains filtered or unexported fields
}

RedisConsumerRepository is a Redis implementation of the Redis consumer.

func NewConsumerRedis

func NewConsumerRedis(rc *mredis.RedisConnection) *RedisConsumerRepository

NewConsumerRedis returns a new instance of RedisRepository using the given Redis connection.

func (*RedisConsumerRepository) Del

func (*RedisConsumerRepository) Get

func (*RedisConsumerRepository) Incr added in v1.45.0

func (rr *RedisConsumerRepository) Incr(ctx context.Context, key string) int64

func (*RedisConsumerRepository) Set

func (rr *RedisConsumerRepository) Set(ctx context.Context, key, value string, ttl time.Duration) error

func (*RedisConsumerRepository) SetNX added in v1.45.0

func (rr *RedisConsumerRepository) SetNX(ctx context.Context, key, value string, ttl time.Duration) (bool, error)

type RedisRepository

type RedisRepository interface {
	Set(ctx context.Context, key, value string, ttl time.Duration) error
	SetNX(ctx context.Context, key, value string, ttl time.Duration) (bool, error)
	Get(ctx context.Context, key string) (string, error)
	Del(ctx context.Context, key string) error
	Incr(ctx context.Context, key string) int64
}

RedisRepository provides an interface for redis.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL