89luca89 / lilipod

Lilipod is a simple container manager, able to download, unpack and use OCI images from various container registries.
GNU General Public License v3.0
240 stars 11 forks source link

Performance suggestions #10

Closed ericcurtin closed 3 months ago

ericcurtin commented 7 months ago

I would be interested in seeing a comparison of:

lilipod run --rm -ti podman run --rm -ti docker run --rm -ti

to me at least, it's as interesting as exec performance.

Also recommend using hyperfine over time for measuring performance:

$ hyperfine 'sleep 1'
Benchmark 1: sleep 1
  Time (mean ± σ):      1.005 s ±  0.001 s    [User: 0.001 s, System: 0.003 s]
  Range (min … max):    1.004 s …  1.006 s    10 runs

hyperfine gives more detail about average (mean), variance, etc.

But take this with a pinch of salt, just curious. Neat project!