mirror of
https://github.com/redis/go-redis.git
synced 2025-04-17 20:17:02 +03:00
* run go fix ./... Signed-off-by: Tiago Peczenyj <tpeczenyj@weborama.com> * run make fmt Signed-off-by: Tiago Peczenyj <tpeczenyj@weborama.com> * fix go vet ./... issues * Update README.md Reorder imports with the rules defined in the Makefile as if we run `make fmt` * run gofumpt -w . * update Makefile to use gofumpt instead gofmt * increment makefile * format test * format tests Signed-off-by: Tiago Peczenyj <tpeczenyj@weborama.com> --------- Signed-off-by: Tiago Peczenyj <tpeczenyj@weborama.com> Co-authored-by: ofekshenawa <104765379+ofekshenawa@users.noreply.github.com>
49 lines
826 B
Go
49 lines
826 B
Go
// EXAMPLE: lpush_and_lrange
|
|
// HIDE_START
|
|
package example_commands_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/redis/go-redis/v9"
|
|
)
|
|
|
|
func ExampleClient_LPush_and_lrange() {
|
|
ctx := context.Background()
|
|
|
|
rdb := redis.NewClient(&redis.Options{
|
|
Addr: "localhost:6379",
|
|
Password: "", // no password docs
|
|
DB: 0, // use default DB
|
|
})
|
|
|
|
// HIDE_END
|
|
|
|
// REMOVE_START
|
|
errFlush := rdb.FlushDB(ctx).Err() // Clear the database before each test
|
|
if errFlush != nil {
|
|
panic(errFlush)
|
|
}
|
|
// REMOVE_END
|
|
|
|
listSize, err := rdb.LPush(ctx, "my_bikes", "bike:1", "bike:2").Result()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Println(listSize)
|
|
|
|
value, err := rdb.LRange(ctx, "my_bikes", 0, -1).Result()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Println(value)
|
|
// HIDE_START
|
|
|
|
// Output: 2
|
|
// [bike:2 bike:1]
|
|
}
|
|
|
|
// HIDE_END
|