Server Bgsave
π
2026-06-14 | π Redis
Redis Bgsave Command | Novice Tutorial
# Redis Bgsave Command | Novice Tutorial
# [Novice Tutorial -- Learning is not only technology, but also dream!](#)
* (javascript:void(0);)
* (javascript:void(0);)
* (javascript:void(0);)
* (javascript:void(0))
Redis Tutorial
(#)(#)(#)(#)(#)
## Redis Commands
(#)(#)(#)(#)(#)(#)(#)(#)[Redis Pub/Sub](#)(#)(#)(#)(#)(#)(#)
## Redis Advanced Tutorial
(#)(#)(#)(#)(#)(#)(#)(#)
[](#)(#)
(#)[](#)
Deep Exploration
Script
Web Service
Computer Science
Search
Programming
Programming Languages
Scripting Languages
Software
Development Tools
Web Service
# Redis Bgsave Command
!(#)(#)
The Redis Bgsave command is used to asynchronously save the current database data to disk in the background.
After the BGSAVE command is executed, it returns OK immediately. Then Redis forks a new child process. The original Redis process (parent process) continues to handle client requests, while the child process is responsible for saving the data to disk, then exits.
### Syntax
The basic syntax of the redis Bgsave command is as follows:
redis 127.0.0.1:6379> BGSAVE
### Available Version
>= 1.0.0
### Return Value
Feedback information.
### Example
redis> BGSAVE Background saving started
!(#)(#)