no, right now there's no way to do this at index time I'm afraid.
You can at query time though, like so:
si = SolrInterface(...)
q = si.query(si.Q('term')**2.5)
If you're interested in working with this functionality, the add
documents are currently constructed in schema.py:512, and any
documents you construct need to be passed to
SolrInterface.conn.update()
Toby
On 23 December 2011 06:05, Michael Lissner