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

learn more… | top users | synonyms

0
votes
0answers
18 views

SOLR - indexing documents with pairs key/value

Here, it's my document after import from mongoDB : documents": [ { "uid": [ 1 ], "body": [ "" ], "field_section": [ { "nid": ...
0
votes
2answers
15 views

Indexing and performance Implications of moving small table into big table

I have a table with approximately 2.5 million rows that I am thinking about moving into a much larger table, 35 million rows, with a boolean flag set on the original 2.5 million. If I wanted to run ...
1
vote
1answer
24 views

The difference between Legacy Indexing/Auto Indexing and the new indexing approach in Neo4j

I'm having trouble understanding the difference between the legacy indexing approach and the new indexing approach so perhaps someone could clarify these points for me. My only concern is really how ...
1
vote
0answers
39 views

Matlab: Submatrix selection using meshgrid() matrices

I know there should be a simple (and faster!) solution to my Matlab indexing problem but my google-jutsu is coming up short and I can't figure it out... :'( I'm trying to apply a plastic deformation ...
1
vote
0answers
35 views

Nonclustered index is faster than clustered index? [migrated]

Both tables have same structure and 19972 rows in each table. for practicing indexing, i created both tables having same structure and created clustered index on persontb(BusinessEntityID) and ...
2
votes
1answer
21 views

python pandas DataFrame from a list

How do i create a pandas DataFrame from the following list: ls= \ [['41457', 'PRE', '533', '887', '1/3/1978', '2/1/2008', '[REL]', '217', '197800000003'],\ ['41458', 'PRE', '533', '887', '1/3/1978', ...
0
votes
1answer
20 views

ElasticSearch: Secondary indecies on field values using Java-API

I'm considering to use ElasticSearch as a search engine for large objects. There are about 500 millions objects on a single machine. For far is Elasticsearch a good solution for executing advanced ...
0
votes
0answers
16 views

Indexing Files in Lucene

I'm new to Lucene and I'm trying to write my first demo and index files locally in the file system. The problem is that it is not indexing files from the directory I gave as an argument. It doesn't ...
0
votes
1answer
31 views

Changing the column order in composite index?

http://www.sqlservercentral.com/articles/Stairway+Series/72284/ I'm reading this sqlservercentral article where they're querying using this. SELECT * FROM Person.Contact WHERE FirstName = ...
0
votes
2answers
24 views

Effective reasonable indexing for numeric vector search?

I have a long numeric table where 7 columns are a key and 4 columns is a value to find. Actually I have rendered an object with different distances and perspective angles and have calculated Hu ...
1
vote
0answers
22 views

Indexing $or queries on the same field in MongoDB

Why does the query: { $or: [ {tags: {$in: ['foo']}}, {tags: {$nin: ['bar']}} ] } NOT use an index on tags?
0
votes
0answers
7 views

Creating a link to a method with a known name in OprnGrok

I have a tests framework written in Java. All our production code is indexed by opengrok. What I want to be able to do is create a link to a class with a known name (org.mycompany.testclass) but I ...
1
vote
1answer
22 views

Fill factor for constantly growing table

I have two indexes: one is clustered on self-incrementing primary key and one unique non-clustered on nvarchar(50) field. The table is expected to grow constantly until it reaches 2-3 million rows. ...
1
vote
0answers
20 views

ElasticSearch - how to return a single value from a list if there is a match

I'm trying to return a single value if I search on a field that contains a list. tags is my list and I have three values in it one, two and three. tags : ["one", "two", "three"] If I do a search ...
1
vote
1answer
30 views

In R, can out of bounds indexing return NAs on matrices, like it does on vectors?

I would like an out of bounds subscript on a matrix in R to return NAs instead of an error, like it does on vectors. > a <- 1:3 > a[1:4] [1] 1 2 3 NA > b <- matrix(1:9, 3, 3) > ...
2
votes
0answers
29 views

Store TermVector in Lucene using class VectorTextField not working

I have tried to store the TermVector in Lucene 4.3.0 by using @amas solution from another post: The code for class VectorTextField is also available on GitHub. I have used the below code before adding ...
1
vote
2answers
42 views

Can Postgres use a function in a partial index where clause?

I have a large Postgres table where I want to partial index on 1 of the 2 columns indexed. Can I and how do I use a Postgres function in the where clause of a partial index and then have the select ...
3
votes
1answer
31 views

Why queries are running slower after converting the column from VARCHAR to DATETIME

I have a table with a column record_datetime which used to be a VARCHAR. I tried changing it to DateTime, as it should be, but the queries are taking lot more time [almost 10 times more]. Why would it ...
0
votes
0answers
13 views

Magento - Do I need to index product_flat and category_flat indexes if I select not to use flat data in admin panel

Indexing category and product flat data in Magento takes a long time to complete and I was wondering if I only need to index these because I have chosen to use Flat Catalog Category and Flat Catalog ...
1
vote
2answers
22 views

Querying by range in your B-tree index's leading edge, PostgreSQL

If you query for a range of dates and another thing, is having the date column as a leading edge in your index a bad thing? I'm using PostgreSQL, but assume this applies to all B-tree indexes. Let's ...
0
votes
0answers
17 views

App Store Optimization - Special Characters on Keywords of Apple Store

I'm submitting an app to Itunes Store, and I want to optimize keyword's use. I know that, for example, it's not necessary to put both plural and singular words, because Apple treats it if I just put ...
1
vote
0answers
28 views

Efficient Indexes for MongoDB

Given the following sample MongoDB document: { _id: someval, metadata: { host: some-host.com, path: /some/path.html, date: ISODate("2000-10-10T00:00:00Z") ...
1
vote
0answers
24 views

Centralized Indexing on Server for Window7 Search

I have read this interesting article http://www.windowsnetworking.com/articles-tutorials/windows-7/Exploring-Windows-7s-New-Search-Features-Part1.html ...
0
votes
2answers
24 views

Mulitple Tables vs Tables Indexes in Postgres

I'm a front end developer with little SQL experience. I am considering developing a data query system for an organization I work for. Currently much of the data is in a series of spreadsheets. I ...
1
vote
2answers
56 views

How to improve my query performance by indexing

i just want to know how will i index the this table for optimal performance? This will potentially hold around 20M rows. CREATE TABLE [dbo].[Table1]( [ID] [bigint] NOT NULL, [Col1] ...
0
votes
1answer
33 views

optimizing a query using union left joins and inner joins

I have a query that I want to optimize. Both unions executed separatley run fine, however as soon as I include inner join it takes up to 57 seconds. How do I solve this. My query is as follows SELECT ...
1
vote
0answers
17 views

database caching when indexing

Say you have a DB with two tables Emp(EmpId, EmpName, DepId) and Dep(DepId, DepName) and three indexes IDX_Emp on Emp's PK EmpId, IDX_Dep on Dep's PK DepId and IDX_J on column DepId in the full outer ...
0
votes
0answers
14 views

Sitemap not indexed by google

In Webmaster tools I can see that Google has not completely indexed all my website pages and it has not been indexed since one month. Sitemap shows: 4,950 URLs submitted 775 URLs indexed Can anyone ...
0
votes
1answer
19 views

Lucene multiplevalue field - mixing TextField with StringField

I query my index using one multivalued field. During indexing the field is created using few fields, some of them are TextField and some are StringField. The problem I had was that by querying the ...
1
vote
1answer
32 views

Filtering based on the “rows” data after creating a pivot table in python pandas

I have a set of data that I'm getting from a SQL database and reading into a pandas dataframe. The resulting df is about 250M rows and growing everyday. Therefore, I'd like to pivot the table to give ...
1
vote
0answers
59 views

How to build an inverted index for multi-dimensional attributes?

I have data in the form of userID-> (col1,col2,col3), where each user has a set of (col1,col2,col3) values) I organize (col1,col2,col3) into a KD-Tree and perform nearest neighbour queries on it. ...
1
vote
2answers
47 views

Array Indexing in multi dimensional numpy array

I'm new to numpy and trying to understand the following example from here. I'm having trouble understanding the output of >>> palette[image] When the indexed array a is multidimensional, ...
0
votes
0answers
6 views

Indexing solution for files on the network

At work we have some file servers where there are a lot (a lot!) of files and directory structures. It is always difficult to browse through them and get to the right place. For this we're thinking of ...
0
votes
0answers
22 views

Upgrade Lucene 2.4 index to Lucene 3.4 [closed]

Last year i have built an index of my data with lucene 2.4, after upgrading to lucene 3.5 it seems compaitable, but this year i have to use upgrade my system to Lucene 4.3. As the newest version donot ...
1
vote
0answers
6 views

Autocorrelation of large matrix

I'm fairly new to Matlab and am trying to compute the autocorrelation coefficient of a large vector field. Basically I have a 15x13664 matrix, where I would like to compute the autocorrelation ...
2
votes
1answer
36 views

Custom BCS indexing connector with changelog inremental crawl is not working properly

I am writing a custom indexing connector using changelog incremental crawl approach. I'm using sample from http://msdn.microsoft.com/en-us/library/ff625800%28v=office.14%29.aspx and trying to change ...
0
votes
1answer
24 views

RavenDB index to get max value of a document property not working?

I've created the below index to try to get the next ItemNumber. ItemNumber is not a raven identifier, so it is assigned by the application. What the index is supposed to do is return 0 if there ...
0
votes
0answers
19 views

error when indexing with terrier and hadoop on a multi node cluster

i'm traing to use terrier on hadoop to index some texts, i have this error "Error reading task outputslave-4", can any bady help me??? Setting TERRIER_HOME to ...
0
votes
0answers
15 views

how to configure Terrier with Hadoop on ubuntu 12.04

Now I'm working on the indexing process using the Terrier v3.5 plateform with the framework Hadoop MapReduce, and I've a problem with the connection between them, so I need your help for how I can ...
0
votes
2answers
40 views

Adding unique index in MongoDB ignoring nulls

I'm trying to add unique index on a group of fields in MongoDB. Not all of those fields are available in all of the documents and I'd like to index only those which have all of the fields. So, I'm ...
0
votes
2answers
32 views

Oracle is using a one-column index although other indices available

We need to query an 8-million-row table constantly so we decided to create an index for the job. In the query we use 3 columns in the where condition, it's like SELECT something FROM my_table ...
0
votes
1answer
22 views

Does MongoDB maintain index statistics (data distribution for index key column)?

SQL Server makes use of index statistics in order to decide whether to make use of index or to perform direct table scan based on the selectivity of the where criteria. Statistics helps query ...
0
votes
0answers
21 views

Solr: Integer vs Text

I have a mysql database that stores records that are being indexed. In many cases the records only have one difference: a user id. Currently I am indexing this field as an integer in solr. I would ...
0
votes
1answer
30 views

Slow query with group by

I am getting some slowness (~6s) when I run the following query: SELECT sql_no_cache t1.id, t2.id, count(injury.id) FROM age_group as t1 CROSS JOIN body_part as t2 LEFT JOIN injury ON t1.id ...
0
votes
1answer
28 views

Elastic Search No server available, list index out of range

I'm trying to get a simple example working with elastic search using pyes, but I'm having trouble getting the starting examples working. I'm following the documentation found here: ...
1
vote
5answers
42 views

Looping Through String To Find Multiple Indexes

I am trying to figure out the most efficient way of looping through a string and finding all indexes of a certain letter. I have used $word_or_phrase.indexOf( $letter ); to find a single index of a ...
0
votes
0answers
18 views

Is It possible to use files which are indexed in TREC fromat by any indexer?

In my company we have a program which uses Lemur to index files in TREC format. Now we want to change the indexer and use Zettair or Lucene. and we are wondering if it would be possible to use the old ...
0
votes
2answers
47 views

Boost multi_index unqiue index issue

I'm trying to create a URL managing object using boost::multi_index. It has 2 indexes, one indexes position of each path item and one indexes key to find that item. class InternalPath { public: ...
0
votes
1answer
33 views

Am I wrong in table design or wrong in selected index when made the table?

I've build web application as a tool to eliminate unnecessary data in peoples table, this application mainly to filter all data of peoples who valid to get an election rights. At first, it wasn't a ...
2
votes
1answer
59 views

How does one make a Dart object/class indexable?

In Python I can make any class support indexing by overriding __getitem__ like so: class Test: def __getitem__(self, key): return self.data[key] Does Dart have a similar construct for ...

1 2 3 4 5 69