Closed romainreuillon closed 1 year ago
Listing file using contentOf primitive return a Sequence. In large projects building many concurrent bundles in parallels this put a lot of pressure on the GC. This patch uses a Traversable instead of a Seq to reduce this pressure.
@mdedetrich I just changed * for _ in the import statements
@romainreuillon I just released sbt-osgi 0.9.9 which has this improvement. Should be available in maven in an hour.
0.9.9
:+1:
Listing file using contentOf primitive return a Sequence. In large projects building many concurrent bundles in parallels this put a lot of pressure on the GC. This patch uses a Traversable instead of a Seq to reduce this pressure.