Java:我们是否应该尽快退出 try-with-resource 块以释放资源?

Java: Should we exit from try-with-resource block ASAP to release the resource?

下面哪个代码片段更好?在处理资源方面更好。

try (Jedis jedis = jedisPool.getResource()) {
    String value = jedis.get("key");

    // Validation calls using `value` but not using `jedis`
    // Another DB call using `value` but not using `jedis`
}

String value;
try (Jedis jedis = jedisPool.getResource()) {
    value = jedis.get("key");
}
// Validation calls using `value` but not using `jedis`
// Another DB call using `value` but not using `jedis`

在第一个代码片段中,资源会一直保留到其他不相关的操作完成,而在第二个代码片段中,资源会在使用后立即释放?

一般情况下,资源越早释放越好。特别是如果下一个操作很长,例如访问数据库。这样,资源就会被释放,供程序的其他部分免费使用。

只有在创建资源(例如数据库连接)成本高昂并且有可能再次需要时,我才会考虑保留该资源。但是,您似乎正在使用资源池,因此资源创建成本将很少。在典型情况下,唯一的成本是池中的一些锁定,这在正确编写(和大小)的池中 并不昂贵。