> For the complete documentation index, see [llms.txt](https://luishsu.gitbook.io/wasmvm-tutorial/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://luishsu.gitbook.io/wasmvm-tutorial/store.md).

# 儲存空間

堆疊裡存放的是運算時暫時需要記錄的東西，如果要比較長時間的儲存資料，在 WebAssembly 有獨立的儲存空間可以使用。以下是WebAssembly 的四種儲存空間，在各自的章節會有詳細的說明

* [變數](/wasmvm-tutorial/store/variables.md)
* [記憶體](/wasmvm-tutorial/store/memory.md)
* [函式](/wasmvm-tutorial/store/function.md)
* [函式表](/wasmvm-tutorial/store/table.md)
