Will queries to the same database likely be faster if run in parallel? – Postgresql
I have a series of queries which are now not paralellised, the java code looks something like this: private List<EntityA> cacheA = Lists.newArrayList; private List<EntityB> cacheB = Lists.newArrayList; private List<EntityC> cacheC = Lists.newArrayList; // ... public class Cache { private…