Adds a boosted term and the amount to boost it to the query.
(self, term, boost_value)
| 872 | self.start_offset, self.end_offset = 0, None |
| 873 | |
| 874 | def add_boost(self, term, boost_value): |
| 875 | """Adds a boosted term and the amount to boost it to the query.""" |
| 876 | self.boost[term] = boost_value |
| 877 | |
| 878 | def raw_search(self, query_string, **kwargs): |
| 879 | """ |
no outgoing calls