A colleague of mine posed the following problem. He wants to search large files of binary data for sequences.
I thought of using mmap (to avoid reading all data into memory at once) and then turning this into a numpy array (using buffer=). But, how to then efficiently find a sequence? Note that I'm not committed to using numpy or mmap as part of the solution. _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
