728x90
์๋ฒ์์ ๋ฐฐํฌ๋ฅผ ํ๊ฒ ๋๋ฉด redis๊ฐ ๋ค์ด์ด ๋์ด ์์ง ์์ ์๋ฌ ์ฝ๋๊ฐ ๋ฐ์ํ๋ค.
redis๋ฅผ ์ด์ฉํ ๋ก๊ทธ์์์ ๊ตฌํํ๊ธฐ ๋๋ฌธ์ ubuntu server ํ๊ฒฝ์์ ๋ค์ด์ ๋ฐ์ ์๋ฌ๋ฅผ ํด๊ฒฐํด์ค์ผ ํ๋ค.
sudo add-apt-repository ppa:redislabs/redis
sudo apt-get update
sudo apt-get install redis
์ดํ redis์ port๊ฐ ์ ์คํ๋๊ณ ์๋์ง ํ์ธํด๋ณด๋ฉด
apt install net-tools
netstat -ntlp | grep 6379
์ ์ผ์ ธ ์๋ ๊ฒ์ ํ์ธํ ์ ์๋ค.
์ด๋ผ์๋ ์๋ฒ ๋ด์ spring ํ๋ก์ ํธ์์ redis ์ ๊ด๋ จ๋ ์๋ฌ๊ฐ ๋๋ค๋ฉด,
spring project applicaiton.properties, or yml ํ์ผ ์์ ์๋
# redis
spring.redis.host=localhost
spring.redis.port=6379
# redis
spring.redis.host=127.0.0.1
spring.redis.port=6379
์์ ์๋ ์ฝ๋๋ฅผ ์๋๋ก ๋ณ๊ฒฝํด์ฃผ๋ฉด๋๋ค. -> RedisRepositoryConfig .java์์ ์ฌ์ฉํ๋ ๊ฒ์ ๋ฃ์ด์ค ๊ฒ
728x90