Tagged Questions
0
votes
1answer
25 views
Lucene.net with large files
I was wondering if it was possible to index and store a number of large files each over 4GB in size. I had no problems doing so and searching the documents with one exception - I was not able to ...
0
votes
0answers
16 views
Doing Fulltext Searches within Left Joins
I am working on improving a search engine for my website and I think the best way to do this would be with Fulltext indexes and Left Joins.
There are three tables (a user table, a "genres" table, and ...
0
votes
1answer
25 views
How to search multi keywork in linq query
i have this code in homepage
CheckBox[] ch= new CheckBox[12];
ch[0] = ChkContextA;
ch[1]= ChkContextB;
ch[2]= ChkContextC;
ch[3]= ...
0
votes
0answers
23 views
How do I implement “smart” search like foursquare [closed]
I've created a website where one can search for stores selling specific brands.
Currently I have two search inputs; One for store and one for brand. I search by using LIKE with %.
I got one table for ...
1
vote
1answer
40 views
How can I smartly extract information from an HTML page?
I am building something that can more or less extract key information from an arbitrary web site. For example, if I crawled a McDonalds page and wanted to figure out programatically the opening and ...
1
vote
0answers
19 views
MySQL FTS boolean mode operator customizing
I'm using the InnoDB FTS of MySQL 5.6.10 and want to change the default behavior of the boolean operators.
Note In implementing this feature, MySQL uses what is sometimes referred to as implied ...
0
votes
0answers
31 views
Keyword based searching and Query Cleaning
I am implementing a keyword based search for my website. My database contains 5 relations: image,audio,videos,document and otherFiles. Each of them contain name,description,file size and some other ...
0
votes
1answer
31 views
Looking for List of Cloud Based Search Services [closed]
I'm looking for a list of search services and would like to know what all the available solutions are for an Internet website? I don't want to manage any servers, I've heard this is called cloud ...
0
votes
5answers
95 views
Fast way to search in the List<String> in Android
Problem Description
I have list of strings, which contains 8000 items. Items which contains list are described below.
List<String> stringList = new List<String>(8000);
...
0
votes
0answers
6 views
I'm Creating a simple program that search the inserted(in textfield) string unspecifically google type
I have a 'TextField' where user input a sentence (assume "Who are you") and presses a button then the program can lookup these strings in any way(described below) in a list and if matches 'found code' ...
1
vote
1answer
27 views
Segment user input for location based search?
I'm implementing a location based search on my website that asks an open-ended question of location? with a textfield for user input.
A user can input any combination of things such as city, state, ...
0
votes
0answers
34 views
Liferay Indexer with Solr
I just wanted to check with more experienced devepopers on how I use Solr with Liferay.
I decided to completely replace Lucene with Solr in my portal installation. Now I have custom assets that I want ...
0
votes
1answer
113 views
Group by entire field value in Tire/ElasticSearch
I'm using the Tire rubygem to connect to ElasticSearch. How can you return facets based on a particular field's value?
For example, I have a field areas, and I'd like to show the top 10 areas as ...
2
votes
1answer
84 views
regular expression dictionary [Google type search and match with regular expressions]
EDIT: One of the main problems with the code below is due to storing regular expression objects in dictionaries, and how to access them to see if they can match another string. But I will still leave ...
0
votes
1answer
47 views
PSQLException: ERROR: syntax error in tsquery
Which characters must be avoided to make sure PSQLException: ERROR: syntax error in tsquery will not occur?
The documentation does not say anything about how to escape the search string: ...
1
vote
1answer
39 views
Sphinx custom sorting (FIELD)
I, have table:
id | geo_id | values ....
1 1 wvrevev
2 2 wvrevev
3 3 wvrevev
3 4 wvrevev
7 5 wvrevev
8 6 wvrevev
9 8 wvrevev
In ...
0
votes
0answers
69 views
x86 program to count for number of occurance of word in a text
I am trying to write a program using x86 assembly that can count the number of occurance for a word in a text. The problem that im having is I can only search for a single character in a text.I want ...
1
vote
2answers
50 views
MySQL search FTS vs Multiple Queries
Working on a project where schema is something like this:
id , key, value
The key and value columns are varchar, and the table is InnoDB.
A user can search on the basis of key value pairs ... Whats ...
0
votes
0answers
40 views
Finding bi/tri grams from mysql database.
Was looking for a way to find frequent occurrences of phrases in data and came across some articles for NLTK. Seems to be perfect except all the examples I have run across are for large single ...
1
vote
1answer
29 views
Inverted File vs Signature File
With respect to Information Retrieval,
I fairly understood the concepts of inverted indices/files. Got to know that signature file was compared much inverted file. But I dont understand concept ...
0
votes
0answers
13 views
What is Dritchlet Smoothing ? How to use it?
I have read Dritchlet Smoothing in the IR paper used for Language Modeling based ranking. I wonder what is phenomenon behind using this ? and how to decide on the parameter ? Plz help.
Example :
...
1
vote
1answer
45 views
What is the difference between full text search and keyword search?
What is the difference between full text search and keyword search ?
Definitions are quite ok . Can anybody give brief idea what is the difference and which one is better ?
2
votes
1answer
106 views
SQL ContainsTable returns low Rank for exact match
For a product named "Red bike with upgraded racing frame", a containstable search returns the following:
containstable(tbl, col, '"red bike"') Rank: 100
containstable(tbl, col, '"red bike with ...
0
votes
1answer
74 views
How to search full-text mysql field in order to return only a sentence when the keyword is found (not to return the whole field)
I have a fulltext field with some text.
Then I search a keyword using: TABLENAME.FULLTEXT_FIELD REGEXP '[[:<:]]keyword'
This returns the records where the keyword is in the fulltext_field.
What ...
1
vote
0answers
58 views
How to do XML text queries in C++?
The whole day I've tried to find some way to make XML queries in C++, but with no success. I don't have much experience from XML and the last time I've made something bigger in C++ was about 7 years ...
2
votes
1answer
130 views
How do I make Elasticsearch fuzzy_like_this treat the like_text tokens as ANDs rather than ORs?
Unlike the "query_string" operator, the "fuzzy_like_this" doesn't have a "default_operator" I can set to "AND", which results in a much larger result set than desired for a multi-term search like ...
2
votes
0answers
31 views
What is the API to do search like on start button in Windows 7?
What is the API to do search like the one available on Start menu button? Is it always available on windows 7?
0
votes
1answer
51 views
Searching with Lucene with stemming enabled
Suppose I store a set of strings (each document in Lucene would be a single word), and then given an input word W, I would like to retrieve all the document that not only match word W but also those ...
0
votes
0answers
33 views
Software/website to manage keywords - Need instant search (should be able to keep it updated by email)
I don't know if the title above explains my situation but I will try to be very precise.
The situation:
I have a team of 5 members (working from different locations). We all require a single task ...
1
vote
2answers
179 views
Open source search engines : alternatives to Lucene
Currently we are using Lucene for our search engine, but we want to look at some alternatives. I have looked at several on the net but seems like a lot of them are out of date or the development ...
0
votes
1answer
40 views
Native interface for searching and finding
Does there any Interface exist that's for searching something like ISearch or IFind ?
I just found some selfmade interfaces but i'm pretty sure there must be a default interface for this. Do i really ...
-1
votes
3answers
153 views
API to build a custom search engine that searches and displays results in my site
I am looking for a search-engine API, preferably in PHP, that I can use to build a custom search engine that only searches my website.
And whose results I can style with CSS, so I believe that ...
0
votes
1answer
57 views
PHP Extensive Search [closed]
I am trying to make a search engine for my web application but am stuck with a few things.
I cannot use FullText as I am using AWS RDS MySql Service which doesn't support it. I researched and found ...
0
votes
2answers
97 views
Using grep recursively
grep has the ability to search recursively using the -r option. However, I was wondering if grep has the ability to search for a query string recursively for a specified number of subfolder levels. ...
0
votes
0answers
22 views
JavaHelp - Custom search parameters?
We already use javahelp into our application, the only problem is that it doesn´t allow searching strings by parts, only finds entire strings. Example:
Text:
"The cat is very beautiful"
Current ...
0
votes
0answers
26 views
Linguistic search on Windows Search Service
I write an application that searches files' (.doc, .pdf, etc.) contents using MSSQL Full-text Search feature. I have decided to move my code, Full-text search to Windows Search Service because the ...
1
vote
2answers
42 views
Tool to search source code for strings which can contain quotes, double quotes, a parens, equal sign.. etc?
I use tools like dtSearch and File Locator Lite to search my local source code files for words and they work fine.
However sometimes I need to search for a phrase like 'Session["cutid"] =' (without ...
0
votes
1answer
89 views
Full-text search with related tables in PostgreSQL
Task:
Implement full text search in multiple tables in PostgreSQL.
For example, a table of projects - projects:
There are two fields in which need to search: title and description.
Create an index on ...
0
votes
0answers
56 views
Match database columns against empty string using full text boolean mode
How can I get the following command return all results?
SELECT *
FROM t1
WHERE MATCH (c1,c2,c3) AGAINST (:keyStr IN BOOLEAN MODE)
where :keyStr is an empty string?
Right now it doesn't return ...
11
votes
5answers
313 views
Faster way of searching a string in text files
I need to search for a string, roughly 13 characters, in a group of text files using C#. The number of text files is changing and can range between 100-1000. The size of the files can range between ...
0
votes
2answers
33 views
Sphinx don't match correct symbols
I have a problem with sphinx search
For example the query is 'C++'
For this query I get results that match 'C' but I need sphinx to search exact 'C++' not 'C'
0
votes
1answer
112 views
Search in Android
I have a app in which i wish to add search feature, i am trying to implement as told in developer.android but the activity does not start when i click on search in emulator, what is the problem?
...
0
votes
1answer
76 views
SOLR/Lucene weighting by user-centric criteria
We are switching from SQL Fulltext Search to Lucene (SOLR stack) search in the next few months. One last wrinkle in figuring out our strategy here has to with replicating one current part of our ...
-5
votes
1answer
90 views
How to implement search in e-commerce web site for products and attribute if there are multiple attribute and sub attribute in Java [closed]
I have implemented search for an e-commerce web application in Java(I am using Struts 2.x , Hibernate 4 and Oracle 10g). In database I have product table attribute and sub-attribute and table depends ...
0
votes
1answer
63 views
full text searching in managed object context and core data
I am building a notes-like application. It has a NStableview displaying all notes' titles, and a NStextview displaying the plain text of the selected note. I am using bindings and core data. I want to ...
1
vote
0answers
129 views
How to create search experience that covers ASP.NET WebForms app and SharePoint
We have data spread between a SharePoint site(s) and an ASP.NET WebForms application (whose data resides in SQL Server). We are happy with SharePoint's out-of-the-box search experience, but now we ...
0
votes
0answers
19 views
Looking for a good search plugin for Twiki
I'm using twiki for knowledge management, however, the built-in search was really hard to use. So I'm looking for a good plugin.
Here's my expectation,
could search topic by author
fully keyword ...
0
votes
0answers
30 views
what is correct way to search posts in russian?
I'm trying to use Graph API search to find all posts with some words in russian.
Unfortunatelly i'm getting result which does not correlate to my request.
If i'm providing query in windows-1251 ...
0
votes
0answers
87 views
Optimizing sphinx ranking for individual word results
I'm employing Sphinx search 2.0.6 with the PHP API. I want to search for the name and attach a higher weight to those results in which the searched string appears in the beginning. In this case, the ...
2
votes
1answer
80 views
how can i make a forum and used umbraco search option in umbraco?
I need to make a forum in my website and Set a search engine with Umbraco tools.
I need some video links and e-books.
this link is very useful but i need more documents and video.
I want to ...



