RPUSH
Syntax
RPUSH key element [element ...]
Module
listCategories
fast list writeDescription
Prepends one or more values to the end of a list, creates the list if it does not exist.
Examples
- Go (Embedded)
- CLI
Prepends one or more values to the end of a list, creates the list if it does not exist:
db, err := sugardb.NewSugarDB()
if err != nil {
log.Fatal(err)
}
length, err := db.RPush("key", "element1", "element2")
Prepends one or more values to the end of a list, creates the list if it does not exist:
> RPUSH key element1 element2