0
votes
0answers
38 views

PHP-Array search algorithm

I have had a look at a few answers but none relates to my specific problem. I have an array that takes user input and sorts the array in an ascending order. That's all good, I now want the user to ...
0
votes
1answer
14 views

Rebuilding the Screwturn wiki search index

My wiki started returning incomplete search results. A user will search for a term that they know is part of an article and the article isn't returned in the results. They can browse to the ...
0
votes
1answer
29 views

solr index for multi-valued multi-type field

I am indexing a collection of xml document with the next structure: <mydoc> <id>1234</id> <name>Some Name</name> <experiences> <experience years="10" ...
0
votes
2answers
30 views

FireBird: combine upper with primary key constraint

I want to use case insensivity in more tables which came from other DB where the fields and indexes can be case insensitive. This means that we can search the needed row in any string format (DAta, ...
0
votes
0answers
31 views

How to get a indexing item list from EBay?

I want to get a list of all active items of a perticular seller, then I make a call to "GetSellerList" on API, and they do send back a list of items, but it cannot call back those new listed items, ...
-1
votes
1answer
21 views

Is there an utility can search file content quickly by make index? [closed]

I need parse a big(in GB) project with many source files, and I must search string continually in this project, but grep(or other normal utility) take a few minutes in each search. So, Is there an ...
0
votes
1answer
65 views

How do I apply 2 filters to my ElasticSearch query object?

I want to query my index, but apply 2 filters. First, the price and second the location. var qobject = { query:{ custom_score:{ query:{ ...
1
vote
1answer
193 views

Sitecore search with custom index

I'm attempting to use Sitecore Search with a custom index to filter and search items. The items are product reviews and are all stored in a single folder with a ProductReview template. + Reviews ...
0
votes
2answers
32 views

MySQL/RDBMS: Is it okay to index long strings? Will it do the job?

Let's suppose I have a table of movies: +------------+---------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | ...
2
votes
1answer
114 views

Programmatically read PDF embedded search index

The capability exists to embed a search index into PDFs using Acrobat pro (tools/document processing/manage embedded index) and other 3rd party programs such as Nuance. I am writing an application ...
0
votes
1answer
54 views

Testing for multiple sets of words in a string [closed]

How do I use an Excel formula to find which (if any) multiple sets, each of up to 50 words, exist in a series of rows of a spreadsheet — if set A has one or more words found in a searched cell, the ...
5
votes
3answers
103 views

Solr 4.0 storing and searching Normalize data of Profile

I was evaluating Solr 4.0 and Elastic Search 0.20.5 for linkedin type searching and wondering how to store Normalize data of user profile which can easily achieved in elasticsearch using nested ...
0
votes
0answers
50 views

Index structure of facebook graph search

I am not interested about the linguistic part of it. But say my query is something like what are the things that me and my friends like the most. How does the indexing data structure look like? It may ...
2
votes
0answers
81 views

How search engines handle word segmentation and indexing

I'm thinking of implementing a small search engine. However I'm not sure how search engines do word segmentations. My thoughts are like this: Build a word dictionary containing popular words For ...
2
votes
1answer
153 views

solr 4.1 java.lang.IllegalArgumentException: first position increment must be > 0 (got 0)

all! After i update my solr version to 4.1, there is a such error when rebuild index: Warning: Error creating document : SolrInputDocument[dop_pos_state=, dop_country=, ...
2
votes
1answer
45 views

how to perform efficient search on non-index field of a very large table in sql server

I have a very large table with only 6 fields on it. Number of rows is roughly 20 million. I have a clustered index including one integer field. However, there is an nvarchar(max) field (not ...
1
vote
2answers
228 views

MATLAB search row index of matrix with values of another matrix

In MATLAB I have a very large matrix (matrix A). Now I would like to find the row-index of the row which contain certain values in the second column. These values - which I'm looking for in Matrix A - ...
1
vote
1answer
54 views

Search index for flat HTML pages

I'm looking to add search capability into an existing entirely static website. Likely, the new search functionality itself would need to be dynamic, as the search index would need to be updated ...
0
votes
1answer
95 views

Fast full-text search on XML files located on file system. What strategy to choose?

I need to implement the fastest possible full-text search on XML files located on file system. Basically I need to determine if some of XML node values contains specific keywords. I've considered a ...
0
votes
0answers
79 views

Search Engine for Custom, “Big” Data?

Clarification: I am aware that only the Google Search Appliance can truly integrate with an search a database. I have built a web application which allows students to sell and purchase textbooks ...
0
votes
0answers
24 views

How to search/index a Chinese-language microblog database?

We have a database of 1.5 million records, and growing, and we need a fast search solution. Here are some specifics: Virtually all content is in Chinese. All records have one field that we want to ...
0
votes
2answers
102 views

Neo4j - index lookup issue

I was trying to set index type from exact to fulltext in neo4j shell, so i can do incasesensitive search with lucene query. So i used this command: index --set-config Destination type fulltext but ...
0
votes
0answers
35 views

Solr - Updating/Deleting indices and their Frequency .

I am building my first application is solr for a website where all content is user generated . I have questions around updating and deleting the information stored in solr .The information provided ...
0
votes
4answers
534 views

How do you configure Lucene in Sitecore to only index the latest version of an item on the master db?

I recognise this is a moot point on the web database, so this question applies to the master db... I have a custom index set up in Sitecore 6.4.1 as follows: <index id="search_content_US" ...
4
votes
2answers
389 views

how to do fuzzy search in big data

I'm new to that area and I wondering mostly what the state-of-the-art is and where I can read about it. Let's assume that I just have a key/value store and I have some distance(key1,key2) defined ...
0
votes
1answer
141 views

which nodejs index method is better

According to the neo4j documentation, indexing can be done i 2 ways" Indexing in Neo4j can be done in two different ways: 1. The database itself is a natural index consisting of its ...
0
votes
1answer
35 views

lucene sort friend search result by recent contact activity

I use Lucene to index user list in my application. How can I sort the user search result by recent activity Example: Anna has just sent an email to Peter. So when Anna Search with character "P" Peter ...
0
votes
1answer
75 views

Lucene index searching

I am using Lucene indexing for the first time. I have some documents in Hindi and English and I create index on the content of document.When I search the index I get result from all the documents even ...
-5
votes
3answers
186 views

Why is there no delimited, integer-only cataloging option in SQL Server? [closed]

Is there something I'm missing? What I am trying to create is basically a table of indexes separated by spaces (or whatever type you fancy). I realize that Full Text Search would not be possible on ...
0
votes
2answers
47 views

Javascript: indexing set of objects for searching by two properties

what datastructure / algorithm should I use for this? I have a large number of points on a cartesian grid, locations specified by (x, y). I want to have a fast search, returning the set of points ...
1
vote
1answer
209 views

MySQL keyword search query to match items with ALL keywords?

I have a table structure which is basically: Items ID: INT(10) Title: CHAR(255) ItemsWords ID: INT(10) ItemID: INT(10) Word: CHAR(50) For each 'Item' record, there are multiple records in the ...
1
vote
1answer
60 views

What are some algorithms or methods for highly efficient search indexes over random data?

I need a "point of departure" to research options for highly efficient search algorithms, methods and techniques for finding random strings within a massive amount of random data. I'm just learning ...
0
votes
1answer
70 views

Sphinx - Filter One Index, Search another Full Text

For a real estate portal, agents record how many open house guests showed up for any given day. I'm trying to use sphinx api to filter the houses with the most visits in a sphinx index called ...
1
vote
3answers
626 views

Search for keywords in Word documents and index them

I'm looking for a way to search in Word documents and show a result of documents that matched the search criteria. I'll try to describe the scenario in more detail here. On a Windows system i have a ...
1
vote
0answers
38 views

Indexing in custom portlet for searching

Which method is called for indexing portlet data and in which table is it stored? Using search capability to a custom portlet,is it necessary to implemet reindex method with in a different class(as ...
0
votes
0answers
20 views

How do web designers get google to list the different areas of their site below their domain name?

For some websites like theoatmeal.com or stack overflow itself, the main pages of the site are shown as sublistings below the main domain name in google search. How would I go about doing this for my ...
0
votes
1answer
100 views

Storing and quickly comparing luminosity histograms

I am interested in building a domain-specific image search application capable of searching for images similar to a given image. With a little google-fu I managed to find this question on this site. ...
0
votes
0answers
82 views

Access Sharepoint 2010 Search Index

I have a - 1. Sharepoint 2010 Server which is used solely as an index server, indexing Sharepoint 2007 Servers. This was done since the 2007 search crawl used to take too long (1 week for 2TB of ...
4
votes
3answers
331 views

Sphinx vs. MySql - Search through list of friends (efficiency/speed)

I'm porting my application searches over to Sphinx from MySQL and am having a hard time figuring this one out, or if it even needs to be ported at all (I really want to know if it's worth using sphinx ...
0
votes
2answers
66 views

Array_search malfunctioning?

The first couple of lines is just to double check all variables are as desired. They all give the correct data. print_r($stack) does give the above stated array element, (+ and more elements) ...
0
votes
1answer
313 views

SOLR Index & search on multiple datasource

I have a problem to search on two dataSource. When I importAll, I see all my records import but when I search, I have in my results, only dataSource's 2 records. In my data-config.xml : ...
0
votes
1answer
75 views

Lucene.NET and external sites

We have built a web site which employs Lucene.NET for search. We recently have integrated another web site so that form a user's perspective both website seem to be just one site! (we share the mater ...
1
vote
0answers
46 views

Heroku handling Tanker 'tankit' differently than locally with regards to Messaging

I am using the rails gem Tanker in order to use Searchify in my app. I am also using acts-as-messageable in order to allow users to send messages. In my acts-as-messageable model I have tankit ...
0
votes
0answers
128 views

App not found on Google Play

When I search for my app I submitted on Google Play I can only find it under com.appname instead of appname (search term I enter). I submitted the app 5 days ago.
0
votes
0answers
85 views

Real-Time Search on Heroku with Flying_Sphinx:Wooden

I'm using Flying_Sphinx:Wooden (not sure if the plan makes a difference) in a Rails Heroku app. Currently, using Heroku Scheduler, I am reindexing every 10 minutes, however I'd like this to be instant ...
0
votes
1answer
58 views

How to retrieve search results from two fields in lucene index, giving one query?

Suppose I search for a query in Field A, and I want to retrive the corresponding fields B and C from my index, how should I go about it? I am using Lucene 3.6.0.
0
votes
1answer
160 views

order results by most searched in solr index

I'm using Solr to implement a predictive search (with autocomplete) on a website, and I want to filter the results by mostly searched in the index. I mean, as the words are searched I want to keep a ...
5
votes
1answer
168 views

Is there something like Solr or Elasticsearch that can be used on the client only in Javascript?

We have a small data set and would like to search through it in a clever way in order to populate an auto-complete input box. The user wants to search for one type of entity, but should be able to put ...
1
vote
2answers
274 views

Searching Sentences in Lucene and getting matched terms

I have an application that requires me to index a few gigabytes of sentences(about 16million lines). Currently my search works in the following way. My search terms is usually revolving around a ...
0
votes
1answer
129 views

Delete not working in lucene indexing (3.5.0)

I am using lucene 3.5.0. I used IndexWriter.deleteDocuments(new Term(field, value)) to delete the index. I performed a delete and there were no exceptions. But still I could find the Lucene document ...

1 2 3