Is it possible to adjust the boost of a field with the Query object before running the search? I know the proper way to do it is to change the fields boost during indexing, but it takes about 4 days to make an index and was just wondering if there's a quick hack i can do for now.
also i have tried hardcoding in the boost to the search query, ie AND field(this that other)^7
and that works, and it would be the end of it, EXCEPT i want to reduce the relevance of this part of the query, i want
AND field(this that other)^.1
but i get empty results.
thanks