Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Redis Server: BGSAVE

Description

Redis BGSAVE command is used to save the DB in the background. The OK code is immediately returned. Redis forks, the parent continues to serve the clients, the child saves the DB on disk then exits.

Syntax:

Basic syntax of redis BGSAVE command is shown below:

BGSAVE

Available since

1.0.0.

Return Value

Simple string reply.

Return Value Type

String

Previous: BGREWRITEAOF
Next: CLIENT KILL