Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 477 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 477 Bytes

pg_asmjit

An alternative JIT provider for PostgreSQL based on AsmJit.

Warning

Currently, it only works with latest PostgreSQL (master branch).

Build

git clone [email protected]:higuoxing/pg_asmjit.git
cd pg_asmjit
git submodule update --init --recursive
make PG_CONFIG=<path/to/pg_config> install

Configure the jit_provider for PostgreSQL.

  1. Edit <path/to/postgresql.conf> and set jit_provider='asmjit'.
  2. Restart the PostgreSQL server.