Currently, SQL Server does not have an equivalent native feature for buffer pool persistence. However, recent versions have introduced improvements related to memory management:
- SQL Server 2019 (15.x): Introduction of the Hybrid Buffer Pool concept, which allows buffer pool objects to reference data pages stored in persistent memory (PMEM) devices, avoiding the need to copy those pages to volatile DRAM. This approach improves performance by reducing latency for data access. (learn.microsoft.com)
- SQL Server 2022 (16.x): Introduction of Buffer Pool Parallel Scan, which improves performance for buffer pool scan operations by utilizing multiple CPU cores, significantly increasing scalability, especially on machines with large amounts of memory. (microsoft.com)