what query parser should I use? http://wiki.apache.org/solr/SolrQuerySyntax
"Differences From Lucene Query Parser
Differences in the Solr Query Parser include
Range queries [a TO z], prefix queries a*, and wildcard queries a*b are
constant-scoring (all matching documents get an equal score)
Square brackets are inclusive and curly braces are exclusive for range
queries.
I tried a similar example with the standard Solr example and it works fine:
curl "http://localhost:8983/solr/update?commit=true"; \
-H 'Content-type:application/json' -d '
[{"id": "doc-1", "price_f": 249}]'
cur