-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Example #13: list used as reverse queue
- Loading branch information
Showing
2 changed files
with
95 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
"github.com/go-redis/redis/v8" | ||
) | ||
|
||
// adresa určující službu Redisu, která se má použít | ||
const redisAddress = "localhost:6379" | ||
|
||
// jméno hodnoty použité pro implementaci jednoduché fronty | ||
const queueName = "fronta" | ||
|
||
// printQueueLength vypíše aktuální délku fronty, samotná délka je přitom | ||
// získána jiným způsobem (vložením prvku, použitím LLen atd.) | ||
func printQueueLength(length int64) { | ||
fmt.Printf("Queue length after enqueuing is %d\n", length) | ||
} | ||
|
||
// mustEnqueue zajistí vložení prvku do fronty popř. pád aplikace v případě, | ||
// kdy vložení není možné provést (Redis je odpojen atd.) | ||
func mustEnqueue(client *redis.Client, context context.Context, key string, value string) { | ||
fmt.Printf("Enqueuing '%s' into queue named '%s'\n", value, key) | ||
// přidání prvku do seznamu | ||
length, err := client.RPush(context, key, value).Result() | ||
if err != nil { | ||
panic(err) | ||
} | ||
printQueueLength(length) | ||
} | ||
|
||
// vstupní bod do demonstračního příkladu | ||
func main() { | ||
// vytvoření nového klienta s předáním konfiguračních parametrů | ||
client := redis.NewClient(&redis.Options{ | ||
Addr: redisAddress, | ||
Password: "", // no password set | ||
DB: 0, // use default DB | ||
}) | ||
|
||
// neměli bychom zapomenout na ukončení práce s klientem | ||
defer func() { | ||
err := client.Close() | ||
if err != nil { | ||
panic(err) | ||
} | ||
}() | ||
|
||
// získáme kontext | ||
context := client.Context() | ||
|
||
// pokus o klasický handshake typu PING-PONG | ||
_, err := client.Ping(context).Result() | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
// smazání seznamu, pokud existoval | ||
client.Del(context, queueName) | ||
|
||
// vložení prvků do fronty | ||
mustEnqueue(client, context, queueName, "první") | ||
mustEnqueue(client, context, queueName, "druhý") | ||
mustEnqueue(client, context, queueName, "třetí") | ||
mustEnqueue(client, context, queueName, "čtvrtý") | ||
|
||
fmt.Println() | ||
|
||
// přečtení všech hodnot z fronty | ||
for { | ||
// pokus o přečtení hodnoty z fronty | ||
value, err := client.LPop(context, queueName).Result() | ||
|
||
// vyhodnocení předchozí operace | ||
switch { | ||
case err == redis.Nil: | ||
fmt.Println("no value found") | ||
return | ||
case err != nil: | ||
panic(err) | ||
default: | ||
fmt.Printf("Value dequed from queue: '%s'\n", value) | ||
} | ||
|
||
length := client.LLen(context, queueName).Val() | ||
printQueueLength(length) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module redis1 | ||
|
||
go 1.13 | ||
|
||
require github.com/go-redis/redis/v8 v8.0.0-beta.5 |