Tagged Questions

2
votes
2answers
262 views

Which full-text search package should I use for SQLite3?

SQLite3 appears to come with three different full-text search engines, called FTS1, FTS2, and FTS3. The documentation available on the website mentions that FTS1 is stable, FTS2 is in development, …
0
votes
0answers
15 views

SQL Server Fulltext search - difference between versions 2005 and 2008 for umlauts?

I am using SQL Server 2005 for full text searching. I did try the same create statement (with the same DB server collation) on SQL Server 2008 but it does not work anymore for umlauts: create table …
0
votes
1answer
28 views

How can I index HTML documents?

I am using Lucene .NEt to do full-text searching. Till now I have been indexing PDF docs, but now I have a few webpages that I need to index. What's the best/easiest way to index HTML documents to …
0
votes
1answer
19 views

solr problem to get the field names

Ive got a problem. In each document I've got fields: threads.id and posts.id. I want to get the field name value for them so i can get data from the database. Between the lines beneath i have marked …
1
vote
2answers
26 views

How to sync and optimize an Oracle Text index?

We want to use a ctxsys.context index type for full text search. But I was quite surprised, that an index of this type is not automatically updated. We have 3 million documents with about 10k …
1
vote
2answers
26 views

How do you boost term relevance in Sql Server Full Text Search like you can in Lucene?

I'm doing a typical full text search using containstable using 'ISABOUT(term1,term2,term3)' and although it supports term weighting that's not what I need. I need the ability to boost the relevancy …
0
votes
1answer
37 views

SQL Full Text search on HTML/XML data

I have a sql full text catalog on a cms database (SQL 2005). The database holds the CMS page content within a ntext column which is part of the full text catalog. As expected the searching takes into …
0
votes
2answers
24 views

algorithm for ranking search results based on previous usage

First and foremost, no I'm not asking please tell me how Google is built in two sentences. What I am asking is slightly different. I have a database filled with textual data that users input. We also …
1
vote
2answers
37 views

Full text search and Entity Framework v1: is it possible?

We're working in EFv1 and I'm implementing a search control with several filter options. Most of them I translate into .Where clauses and that is ok with EF. But there is one specific filter that can …
0
votes
1answer
18 views

how to search in multiple fields with solr php client?

when i do a standard search it just search for one field type. $results = $solr->search($query, $offset, $limit); when i try this: $params = array('qf' => 'threads.title posts.body'); …
0
votes
1answer
20 views

solr php client search method: use to search word1 OR word2?

i use solr php client. but when i use the search method: $params = array('qf' => 'threads.title posts.body', 'defType' => dismax); $results = $solr->search($query, $offset, $limit, …
0
votes
1answer
24 views

solr terms: boosting and dismax?

currently i am learning how solr works. words i usually see are boosting and dismax request handler. what do they mean? i have googled it but find the explanations kinda difficult to understand. i …
0
votes
0answers
16 views

get solr object fields in php?

with solr php client you can get results from solr. if ($results) { $total = (int) $results->response->numFound; $start = min(1, $total); $end = min($limit, $total); echo …
-1
votes
2answers
25 views

Solr PHP client vs file_get_contents?

I am using PHP to access Solr and I wonder one thing. Why should I use Solr PHP client when I can use: $serializedResult = file_get_contents( …
1
vote
3answers
71 views

Best Practices for implementing a Lucene Search in Java

Each document in my Lucene index is kind of similar to a post in stackoverflow and I am trying to search through the index (which contains millions of documents). Each user should only be able to …

1 2 3 4 5 31 next
15 30 50 per page