Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 370 Bytes

ext-redis_fdw-install.md

File metadata and controls

18 lines (15 loc) · 370 Bytes

Redis FDW 安装

# 先安装hiredis
git clone https://github.com/redis/hiredis
cd hiredis
make -j8
sudo make install

# 再安装redis_fdw
git clone https://github.com/pg-redis-fdw/redis_fdw
cd redis_fdw
PGSQL_BIN="/usr/local/pgsql/bin/"
git checkout REL9_5_STABLE
PATH="$PGSQL_BIN:$PATH" make USE_PGXS=1
sudo PATH="$PGSQL_BIN:$PATH" make USE_PGXS=1 install