Tagged Questions
The query-parser tag has no wiki summary.
2
votes
1answer
166 views
Lucene QueryParser in multiple threads: synchronize or construct new each time?
I have a web application where users submit queries to a Lucene index. The queries
are parsed by a Lucene
QueryParser. I learned the hard way that QueryParser is not thread-safe.
Is it better to ...
1
vote
0answers
108 views
Parse search queries in sql 2005 FTS
In lucene, we can use QueryParser.Parse(query) to find out how the given query is interpreted by lucene. Its very helpful. I am looking for some kind of API or build in sys functions to identify how ...
0
votes
2answers
39 views
searching lucene index on multiple fields
I have an index with 2 content fields (analyzed, indexed & stored):
for example: name , hobbies. (The hobbies field can be added multiple times with different values).
I have another field that ...
0
votes
0answers
10 views
Print the clauses from QueryParser
Is there an easy way to get debug info on what the actual subqueries that the QueryParser generates (ie: BooleanQuery, PrefixQuery, WildCardQuery, etc)?
0
votes
5answers
265 views
Parse a SQL statement to see if it is anything other then a SELECT statement?
Is there a good way to parse a SQL statement to ensure it contains only a SELECT statement and nothing else? I am using C#, System.Data.SqlConnection, and MS SQL Server