views:

37

answers:

2

I read an article around schema-less database which sounds cool. (http://bret.appspot.com/entry/how-friendfeed-uses-mysql)

But what isn't clear to me is how do they run search queries on this data? Since the data is in JSON format how do we look for it?

A: 

I'd imagine they have a separate search engine with its own index - probably not even in MySQL, something like Solr.

ceejayoz
+1  A: 

They're using sphinx for that

Aziz