Indexing data structures is general technique to improve the speed of data lookups.

learn more… | top users | synonyms

1
vote
0answers
8 views

PosgreSQL full text search change dictionary

I have the following statement: UPDATE customer SET customer_text = to_tsvector(company_name || ' ' || email || ' ' || city); The company name field in some cases ends with the letter 'Y' which ...
-1
votes
0answers
4 views

Using ajax #! for google but site is not being crawled any more [closed]

We used to have all links in a normal way (thus with paramers ? ), we changed to ajax loading cause we installed a music player. An example New Links: http://stereofox.com/post.php#!idPost=5326 Old ...
1
vote
1answer
28 views

Does Database Indexing play any important role in Parent Child table?

Look at this 1st scenario, you got a table that has 2 columns- Parent (P) & Child (C). P-C 1-3 2-8 3-6 6-4 8-7 When users search for all descendants of "1" then it will show: P-C 1-3 3-6 6-4 ...
0
votes
1answer
16 views

What is the best practice to index data from multiple users in Lucene

I have a multiuser system. Each user creates indexable content, but each user can only search your own content. What better way? Create a single directory index, index everything in there, and then ...
0
votes
2answers
16 views

Setting values in a matrix in bulk

The question is about bulk-changing values in a matrix based on data contained in a vector. Suppose I have a matrix 5x4 matrix of zeroes. octave> Z = zeros(5,4) Z = 0 0 0 0 0 0 ...
0
votes
0answers
26 views

MySQL - Analyze Query

This is a following question regarding: Original question The scenario: One query with FULL Text Search One query with Like %something% Over 11 thousand records Goal: - Analyse the explain of ...
0
votes
1answer
29 views

How to crawl, process and index social media profiles?

For a new tech-startup venture we want to set up a so called "Social Crawler". With this piece of software we want to give clients the ability to search for potential employees. The results (E.g. ...
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
1answer
26 views

indexing queries in oracle

I wrote this query to find the number of purchases for which there are at least 1000 other purchases, but only if ServiceType, GST and PaymentType are the same. SELECT COUNT(purchases) FROM ( SELECT ...
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 ...
2
votes
1answer
31 views

integrate Nutch 1.6 with Solr 4.3 IOException when running <nutch crawl urls -solr http://localhost:8983/solr/> Job Failed. Any ideas?

I am trying to integrate Nutch 1.6 with Solr 4.3 (I copied the /apache-nutch-1.6/conf/schema-solr4.xml into collection1/conf/ and rename the file to schema.xml). I also tried Nutch1.5.1 to integrate ...
0
votes
1answer
23 views

MySQL - Full Text Search - Losing index

So here is the scenario: MySQL have 1 MYISAM Table colum named v.value has a full text index Basic query works fine, uses the index as expected: SELECT p.online_identifier FROM (...) WHERE ...
0
votes
1answer
37 views

solr unable to search with exact value

I am using Solr 4.1.0 and I'm facing a strange issue. If I give a value to search for a field, even be it exact or involving a wildcard, it gives me 0 search results. On the other hand if I just give ...
0
votes
2answers
39 views

GUID clustered PK's faster than BIGINT and INT identity PK's on SQL Server 2012 Express?

I'm developing a database-intensive application which maintains about 5 tables. These tables contain many thousands of records each. All the tables use GUID clustered primary keys. To make it ...
-1
votes
1answer
34 views

How to speed up my sql queries?

I have a very huge database (MySQL) 7 tables (1000000 record each) I use very simple queries to call information like : select * from matches where match_date='$date' SELECT * FROM countries WHERE ...
1
vote
2answers
44 views

How can I reference an List<string> object's position index without searching for first occurrence?

I am trying to create an XML document using Linq and need to reference the index within a list of each object. At the moment all I can find is the IndexOf(s) method which just returns the first ...
-1
votes
2answers
36 views

Products stopped showing for a couple of hours with Magento [closed]

I've come across a strange issue where over the weekend one of our websites stopped displaying any products when clicking on a product category. One of my collegues tested and was getting the usual ...
-6
votes
0answers
29 views

What are the indexes in database? [closed]

I want to know What are the indexes that we discuss in databases? And what is the use of it? And what are different between clustered ,non-clustered ,primary and secondary ,dense Indexes I refer lots ...
0
votes
1answer
24 views

disabling constraints will affect indexes

I have to migrate records from one db to another db. It involves nearly 200+ tables. For migrating records I use exp/imp feature of oracle. To avoid constraint violation errors I disable all ...
0
votes
3answers
38 views

2D Array of letter number combination indexes

I am at a loss in creating a 2D matrix with a combination of letters and numbers as indexes. Typically an array is accessed using array[0][1] or array[3][2]. How can I achieve looking up an array ...
0
votes
0answers
25 views

Index specific part of html page to elasticsearch

I want to index specific part of html page to ElasticSearch. These parts are different for each site. One way is to traverse dom element in html page for each site and show key value pairs to user in ...
-2
votes
1answer
32 views

MySQL - How to add index to certain column? [closed]

How do I add index to certain column? ALTER TABLE TABLE_NAME ADD INDEX (COLUMN_NAME) ALTER TABLE TABLE_NAME ADD KEY (COLUMN_NAME) Which one is correct? And can somebody explain what are the ...
0
votes
1answer
57 views

Is there a good indexing / search engine for Node.js?

I'm looking for a good open source (with LGPL or a permissive license) indexing engine for a node.js application, something like Lucene. I'm looking for in-process indexing and search and am not ...
0
votes
0answers
19 views

Regex match in windows catalog (SQL query indexing service)

I'm trying to perform a Regular-Expression search on a catalog on Windows indexing service (Windows Server 2008 R2). The CONTAINS predicate works great for words by I need to use regex for some ...
0
votes
1answer
45 views

Optimize Multiple Select Queries on Large Table

I'm trying increase the performance of a bunch of SELECT count(DISTINCT id) queries that I'm running in a webpage by creating an indexed view. Currently it takes about 9 seconds for these queries to ...
0
votes
1answer
27 views

JScript Array with custom array index

Consider this, I have a JScript array of arrays. I want to copy a given index of the array into another array using the same index. So for example: MyArray = {[0] = Array, [1] = Array, [2] = Array} ...
0
votes
1answer
31 views

Sql Server: altering a view makes clustered and full-text search indexes to be deleted

Scenario I have got two tables: tblA and tblB, with the same structure. Every moment, one of them is online, and the other one is in stand by. Periodically data are updated in the stand by table, it ...
0
votes
0answers
15 views

Full text search on a view, not entirely getting there

I have created two views to try and get to the completed query, but I got stuck on an issue on each of them. The first one, I get my data correctly, but since it's using a sub-query to reach its ...
1
vote
4answers
60 views

resource busy while rebuilding an index

There is a table T with column a: CREATE TABLE T { id_t integer not null, text varchar2(100), a integer } / ALTER TABLE T ADD CONSTRAINT PK_T PRIMARY KEY (ID_T) / Index was created like ...
0
votes
2answers
34 views

Indexing an HTML page that redirects onload

I have a pure GWT based website and as we are aware the search engines cannot index pure gwt based websites. Thus, I have created an alternate web page as shown below which is stored as a separate ...
0
votes
2answers
33 views

Does indexing make sense to speed up the use of UPDATE?

I have a MyISAM table in MySQL with three columns - an auto-incrementing ID, an integer (customer id) and a decimal (account balance). At this time, whenever I initialize my system, I completely wipe ...
0
votes
1answer
22 views

Does Lucene store the actual documents in its index?

I am planning to use Lucene to index a very large corpus of text documents. I know how an inverted index and all that works. Question: Does Lucene store the actual source documents in its index (in ...
1
vote
1answer
42 views

Most recent value per column with multiple column group by and where clause

Given this 2 million+ entry table,ID auto incrementing, and index1(MainId,SubID,Column1) index2(MainId,SubID,Column2): ID MainID SubID Column1 Column2 -------------------------------------- 1 ...
1
vote
1answer
36 views

Double indexing in associative array

I'm building a server using Node.js. I store the objects representing my users in an associative array and right now the index of those objects are the sockets id of that connection. Using the ...
1
vote
0answers
38 views

Neo4j/Lucene - How to create a unique index?

I'm using Neo4j, and I wonder if it is possible to create a lucene index with a unique field. (that is, every key/value pair can be associated with only one node) For example, i want to achieve the ...
-2
votes
0answers
9 views

Text Data Statistics [closed]

I want to scrape a job site then run a statistical analysis on the data over a number of years to find the top used keywords, top locations, etc based on the number of occurrences/frequency of words ...
0
votes
1answer
19 views

Simple MySQL WHERE query not using Index

Quick Answer: Query condition needs to be same type as column to use index. I was trying to search a CHAR column with a numeric condition. I have a table with 15 million rows. I have a column ...
-1
votes
0answers
6 views

google search result displaying index.html which is in a subfolder [closed]

http://www.sobhadevelopers.com/ and http://www.sobhadevelopers.com/projects/habitech/ My question was how when typed 'sobha habitech' and searched in google, the result throws the latter link in ...
0
votes
3answers
44 views

Java - Indexing an Interface?

This is probably a really stupid question, so please forgive me. But this morning, I've come across a piece of Java syntax that I am completely unfamiliar with. The syntax is as follows: public ...
1
vote
1answer
58 views

C — Filling char * using a loop and index — NOT WORKING

This chunk of code is part of a function to convert a decimal number into binary, placing it in a specific index of char instBin[33] that was created and passed by reference by the calling function. ...
0
votes
1answer
34 views

CouchDB-Lucene get distinct rows from search

I have duplicated rows in my Lucene's index and I whant to retreive only distinct datas with the search. I think that I can't build the index without the duplicated datas because they are not stored ...
0
votes
1answer
34 views

Trouble with NaNs: set_index().reset_index() corrupts data

I read that NaNs are problematic, but the following causes an actual corruption of my data, rather than an error. Is this a bug? Have I missed something basic in the documentation? I would like the ...
0
votes
0answers
24 views

Open source projects that enable simple substring search against billions of strings?

I've a dataset of a few billion 10-50 character strings, and I'd like to find the most efficient way to search for substrings within that dataset. The dataset won't change, but I plan on doing lots ...
0
votes
0answers
50 views

WildCARD search using lucene in a large file containing 100 millions Strings taking too much time. i want the result in 1-2 seconds

i have a file size 1.43 gb. the file contains 100 millions strings ( 3 - 80 characters length) separated line by line in the file. i am doing WILDCARD search on the file using lucene. right now i am ...
1
vote
1answer
36 views

When to use find over logical indexing

I need to return the first value in an array that is greater than another particular value. I have: find(A > val, 1, 'first') According to this post: http://stackoverflow.com/a/9464886/1985603 ...
0
votes
2answers
46 views

KD Tree alternative/variant for weighted data

I'm using a static KD-Tree for nearest neighbor search in 3D space. However, the client's specifications have now changed so that I'll need a weighted nearest neighbor search instead. For example, ...
-1
votes
1answer
33 views

Fine grained (miliseconds) temporal indexes in neo4j [closed]

What are the best practices for modeling fine grained timelines in neo4j? If I were to use miliseconds as the grain in the pattern described here and here would it prove somehow problematic and ...
4
votes
1answer
48 views

At what rate do indexes “explode” in GAE's big table?

At what rate do indexes "explode" in GAE's big table? The excerpt from their documentation below explains that for collection values, indexes can "explode" exponentially. Does this mean that for an ...
2
votes
2answers
61 views

Why does SQL Server perform a clustered scan when IN clause has a subquery?

If I search for users like so: SELECT * FROM userprofile WHERE userid IN (1, 2, 3) The execution plan shows that UserProfile is using a Clustered Index Seek If I change the IN clause to use a ...
1
vote
1answer
18 views

MongoDB Geospital compound indexing return error

I am trying to make an index over my collection in MongoDB. But I am getting error of point not in interval of [ -180, 180 ] This is the query I am trying to run. ...

1 2 3 4 5 68