我们正在使用Spring集成CachingSessionFactory来缓存sftp会话。一切正常,但有一个问题是如何处理这些会议。
比如说,如果我的池大小是10并且如果其中一个会话是陈旧的(可能与实际的sftp服务器断开连接),那么这个过时的会话被抛出并被另一个好的会话取代之前使用
答案 0 :(得分:1)
是的,你的结论是正确的。 CachingSessionFactory
基于org.springframework.integration.util.SimplePool
,请求的代码如下:
private T doGetItem() {
T item = this.available.poll();
if (item != null && logger.isDebugEnabled()) {
logger.debug("Obtained " + item + " from pool.");
}
if (item == null) {
item = this.callback.createForPool();
if (logger.isDebugEnabled()) {
logger.debug("Obtained new " + item + ".");
}
allocated.add(item);
}
else if (this.callback.isStale(item)) {
if (logger.isDebugEnabled()) {
logger.debug("Received a stale item " + item + ", will attempt to get a new one.");
}
doRemoveItem(item);
item = doGetItem();
}
this.inUse.add(item);
return item;
}
请参阅他们的源代码了解更多信息。