
@revndm Where does this land on the horror scale?

I very much enjoyed seeing Hole in 1994 but I never got to see the magnificent L7. Still absolutely bangs.

Genuine thanks for this little trip down memory lane. I absolutely love this track.
*watching L7*
(under breath) ...i could fix them
incidentally, i am loving search now working on beige.
it blows my mind it can find things so fast.
Elastic Search is an algorithm that expands a query into a variable number of search machines and then collects the findings from those machines to produce an answer.
It's a faster algorithm (in terms of time to get the answer) than just having one search machine look through the entire dataset to find the answers.
It's faster (in this sense) because it's parallel. By dividing the dataset into N random subsets, you can use N search machines to look through it in 1/Nth of the wall clock time.
It's one of many MapReduce style algorithms, and it's a current topic for computer science research.