PostgreSQL 正體中文使用手冊
16
PostgreSQL.TW官方使用手冊小島故事加入社團
Search
⌃K
Links
簡介
前言
I. 新手教學
II. SQL 查詢語言
III. 系統管理
16. 以預編譯套件安裝
17. 以原始碼安裝
18. 以原始碼在 Windows 上安裝
19. 服務配置與維運
20. 服務組態設定
21. 使用者認證
22. 資料庫角色
23. 管理資料庫
24. 語系
25. 例行性資料庫維護工作
26. 備份及還原
27. High Availability, Load Balancing, and Replication
28. 監控資料庫活動
29. 監控磁碟使用情況
30. 高可靠度及預寫日誌
31. 邏輯複寫(Logical Replication)
32. Just-in-Time Compilation(JIT)
32.1. What is JIT compilation?
32.2. When to JIT?
32.3. Configuration
32.4. Extensibility
33. 迴歸測試
IV. 用戶端介面
V. 資料庫程式設計
VI. 參考資訊
VII. 資料庫進階
VIII. 附錄
參考書目
Powered By GitBook

32.3. Configuration

The configuration variable jit determines whether JIT compilation is enabled or disabled. If it is enabled, the configuration variables jit_above_cost, jit_inline_above_cost, and jit_optimize_above_cost determine whether JIT compilation is performed for a query, and how much effort is spent doing so.
​jit_provider determines which JIT implementation is used. It is rarely required to be changed. See Section 32.4.2.
For development and debugging purposes a few additional configuration parameters exist, as described in Section 20.17.
Previous
32.2. When to JIT?
Next
32.4. Extensibility