Skip to content

Commit

Permalink
Add SetEX command
Browse files Browse the repository at this point in the history
  • Loading branch information
TwiN committed Oct 22, 2020
1 parent 38caa12 commit cc71f5d
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
14 changes: 14 additions & 0 deletions commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ type Cmdable interface {
MSet(ctx context.Context, values ...interface{}) *StatusCmd
MSetNX(ctx context.Context, values ...interface{}) *BoolCmd
Set(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmd
SetEX(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmd
SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmd
SetXX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmd
SetRange(ctx context.Context, key string, offset int64, value string) *IntCmd
Expand Down Expand Up @@ -784,6 +785,19 @@ func (c cmdable) Set(ctx context.Context, key string, value interface{}, expirat
return cmd
}

// Redis `SETEX key expiration value` command.
func (c cmdable) SetEX(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmd {
args := make([]interface{}, 4)
args[0] = "setex"
args[1] = key
args[2] = formatSec(ctx, expiration)
args[3] = value

cmd := NewStatusCmd(ctx, args...)
_ = c(ctx, cmd)
return cmd
}

// Redis `SET key value [expiration] NX` command.
//
// Zero expiration means the key has no expiration time.
Expand Down
15 changes: 14 additions & 1 deletion commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1147,7 +1147,7 @@ var _ = Describe("Commands", func() {

It("should Set with keepttl", func() {
// set with ttl
set := client.Set(ctx, "key", "hello", 5 * time.Second)
set := client.Set(ctx, "key", "hello", 5*time.Second)
Expect(set.Err()).NotTo(HaveOccurred())
Expect(set.Val()).To(Equal("OK"))

Expand All @@ -1172,6 +1172,19 @@ var _ = Describe("Commands", func() {
Expect(get.Val()).To(Equal("hello"))
})

It("should SetEX", func() {
err := client.SetEX(ctx, "key", "hello", 100*time.Millisecond).Err()
Expect(err).NotTo(HaveOccurred())

val, err := client.Get(ctx, "key").Result()
Expect(err).NotTo(HaveOccurred())
Expect(val).To(Equal("hello"))

Eventually(func() error {
return client.Get(ctx, "foo").Err()
}, "1s", "100ms").Should(Equal(redis.Nil))
})

It("should SetNX", func() {
setNX := client.SetNX(ctx, "key", "hello", 0)
Expect(setNX.Err()).NotTo(HaveOccurred())
Expand Down
7 changes: 7 additions & 0 deletions example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,13 @@ func ExampleClient_Set() {
}
}

func ExampleClient_SetEX() {
err := rdb.SetEX(ctx, "key", "value", time.Hour).Err()
if err != nil {
panic(err)
}
}

func ExampleClient_Incr() {
result, err := rdb.Incr(ctx, "counter").Result()
if err != nil {
Expand Down

0 comments on commit cc71f5d

Please sign in to comment.