def get(ids: List[String]) : List[FeatureEntity] = transactional {
select[FeatureEntity].where(_.id in ids)
}
On the other hand, looking at the implementation in net.fwbrasil.activate.storage.relational.SimpleJdbcRelationalStorage. I saw the `poolSize` = 20, so if there is 20 connections hanging, how
will the 21 connection be handled?
Thanks in advance,