Redis1 Jedis 통신방식 선요약: Jedis는 Socket을 통해 InputStream,OutputStream을 이용해 통신 우선 Jedis는 DB연결과 비슷하게 Pool을 이용해서 Redis와 연결된 객체들을 관리한다. 사용자들은 Pool을 통해 Jedis객체를 가져와서 사용한다. //jedis의 Pool클래스의 Jedis를 받아오는 메소드 public T getResource() { try { return internalPool.borrowObject(); } catch (NoSuchElementException nse) { throw new JedisException("Could not get a resource from the pool", nse); } catch (Exception e) { throw new JedisC.. 2021. 6. 11. 이전 1 다음