Re: grep library?

2013-10-27 Thread Dmitry Olshansky
27-Oct-2013 07:00, Andrei Alexandrescu пишет: Hello, A coworker implemented a system that spawns grep to rummage through a large log file. Apparently doing so is quite a bit faster than using a regex. I would love to see how does the usage of regex looks like. Some numbers would be just

grep library?

2013-10-26 Thread Andrei Alexandrescu
Hello, A coworker implemented a system that spawns grep to rummage through a large log file. Apparently doing so is quite a bit faster than using a regex. This is because grep is highly specialized and optimized. I was wondering if we could implement a grepping library that builds on

Re: grep library?

2013-10-26 Thread Kelet
On Sunday, 27 October 2013 at 02:59:58 UTC, Andrei Alexandrescu wrote: Hello, A coworker implemented a system that spawns grep to rummage through a large log file. Apparently doing so is quite a bit faster than using a regex. This is because grep is highly specialized and optimized. I was