From the query, can I say something like, leave out results that have a relevance score less than 0.01?
you should add a min_score to your query like this:
{ "min_score": 0.1, "query" : { "term" : { "user" : "kimchy" } } }