|
|
|
|
|
by ynniv
5617 days ago
|
|
Are the logs being read from disk? In my experience, python is highly optimized for reading (possibly compressed) files from disk. If your infrastructure keeps logs in memory, python will lose this advantage and compete on computational performance where Haskell has the advantage. This is important for those of us who grind logs on disk and might be considering a language switch. |
|
What you're probably observing is Python's slow code generation being masked by the inherent slowness of I/O.