Conversation
Notices
-
"The key to making programs fast is to make them do practically nothing. ;-)" - #nerdgasm http://lists.freebsd.org/pi... http://b1t.it/cvfJ
-
@jwildeboer so true, several tips to keep in mind if I need extreme performance, particularly that bit about not looking at all the data.
-
@jwildeboer there's something to learn about USING grep in there too, longer matching strings can be FASTER. #counterintuitive cc @climagic
-
@jwildeboer also, large parts of this explanation are in the source for GNU grep, a win for free software.
-
@jwildeboer @kevingranade Also, avoid using the -i option if you can. Slows it down by orders of magnitude. Use [Aa] instead where needed.
-