Redis streams are just another data type and follow the same persistence settings that have been available to Redis:
https://redis.io/topics/persistenceYou can use either RDB: snapshots of the entire dataset at some interval and/or AOF: logging of all changes fsync on every write, every second or leaving it to the OS.