JSON 存储在内存表中

如果可以使用内存优化表,则可以将 JSON 存储为文本:

CREATE TABLE ProductCollection (
  Id int identity primary key nonclustered,
  Data nvarchar(max)
) WITH (MEMORY_OPTIMIZED=ON)

JSON 在内存中的优势:

  • JSON 数据始终在内存中,因此没有磁盘访问权限
  • 使用 JSON 时没有锁和锁