An index is a data structure that facilitates a faster lookup time.

learn more… | top users | synonyms

0
votes
1answer
28 views

Javascript push array item to named index

I have a JSON array: [{ id: 1, client: "Microsoft" },{ id: 2, client: "Microsoft" },{ id: 3, client: "Apple" }] and I'd like to group it by "client", but I'm having difficulty with ...
2
votes
2answers
24 views

MySQL performance: multiple tables vs. index on single table

I am wondering what is more efficient and faster in perfomance: Having an index on one big table or multiple smaller tables without indexes? Since this is a pretty abstract problem let me make it ...
2
votes
2answers
43 views

Why am I receiving “list index out of range” in my code?

I am receiving "list index out of range". I think I'm naming one of the variables incorrectly. It might make more sense if i add the rest in then. I am trying to print out the differences in ...
0
votes
1answer
59 views

Improving Performance on 2 Left Joins and multiple SUMs in MySQL

I'm no MySQL expert as it probably shows from my query below, but I've managed to get my query to give me the results i want, but it seems very slow to me: SELECT bouts.bout_id, ...
1
vote
2answers
13 views

How to access (multi)index of a Data Frame?

I have a data frame and use some of its columns to group by: grouped = df.groupby(['col1', 'col2']) Now I use mean function to get a new data frame object from the above created groupby object: ...
0
votes
0answers
11 views

Alfresco solr index crawling for third party application?

Can it be possible to crawl alfresco 4.2 solr indexes from outside third party application using crawling and user can directly search alfresco content from here? I am using alfresco 4.2 with solr ...
1
vote
0answers
30 views

Why does SQL ignore an index hint and opt for a different index?

Given a table that has two indexes on it, one sorted in the reverse from the other and given these two queries. Select value From SomeTable wITH (INDEX(IV_Sort_Asc)) Select value From SomeTable wITH ...
0
votes
1answer
47 views

Why does the first query run fast and the second slow?

I've got the following 3 tables: visits, keywords and pages. When I run a query to get the keywords with visits count, the query runs fast enough. But when I run a very similar query to get the pages ...
4
votes
2answers
48 views

Return jQuery object (instead of DOM) from jQuery array using index

I have a jQuery array of <span>s and I'd like to get just one of them as a jQuery object so that I can string additional methods on it. Something like $mySpans[2] (which returns a string), or ...
-2
votes
0answers
18 views

PHP html table detail [closed]

I have index.php where I have included in div#colright my another index.php (mod-dily) with php generated html table and when I want to click to detail of some row I'm gettin error (Access denied for ...
1
vote
3answers
55 views

Qry runs too long and index didn't work

I created an index to help a really long 28 minute qry run faster and it doesn't seem to have helped to much. This is the Index I created USE [NLTR201212_test] GO CREATE NONCLUSTERED INDEX [Billys ...
-4
votes
0answers
37 views

[__NSArrayM replaceObjectAtIndex:withObject:]: index 1 beyond bounds for empty array

I am getting index bound error as i put if condition but still didnt getting where exact issue is happening.I have committed my condition in this code - (void) setComparingIndex:(int)index { if ( ...
2
votes
3answers
34 views

How to get indices of selected items in WPF's listbox?

Before you mark this question as a duplicate or suggest using Items.IndexOf, please do the following: public MainWindow() { InitializeComponent(); var A = new object(); var B = new ...
0
votes
1answer
24 views

use of Index over function SUM in DB2

I had a Query as Below, SELECT SUM(SOLD_QTY_CNT) AS QUANTITY, DENOM_AM, SUM(LIN_AM) AS LINE_AMT, LIN_AM AS O_LINE_AMT, ORD_DTL_ID FROM MyTable GROUP BY ORD_DTL_ID, LIN_AM, DENOM_AM ...
0
votes
2answers
45 views

Finding the indices of matching elements in list in Python

I have a long list of float numbers ranging from 1 to 5, called "average", and I want to return the list of indices for elements that are smaller than a or larger than b def find(lst,a,b): result ...
0
votes
1answer
24 views

In PANDAS , how to get it's index of a known value?

I like to use pandas as my data analysis tool . Now a problem plaguing me , such as this example: In [148]: a = pd.DataFrame(np.arange(10).reshape(5,2),columns=['c1','c2']) In [149]: a Out[149]: ...
0
votes
1answer
17 views

Efficiently returning a field of all query hits in Lucene

I have a fairly large lucene index, and queries that can hit about 5000 documents or so. I am storing my application metadata in a field in lucene (apart from text contents), and need to quickly get ...
1
vote
2answers
69 views

Perl Index function not working?

I'm trying to test if a backtick output string (it is a string, right??) contains a substring. my $failedCoutner = 0; my $tarOutput = `tar -tvzf $tgzFile`; print "$tarOutput\n"; my $subStr = "Cannot ...
0
votes
2answers
47 views

Choosing the right shard key in MongoDB

We are building our first MongoDB and currently we are trying to choose the right shard key. each document in our main collection contain around 40 voice call related fields and the main field that ...
0
votes
1answer
24 views

Magento index fails after processing

My catalog URL has not run for over a month. I have tried running in both from Magento and the command line. When running from Magento it times out on the front end but when I go back to it I can ...
0
votes
0answers
26 views

Matlab - Change indexed window title

I'm having some trouble changing the windowtitle on specific indexed windows (which are not created in this code). So I have three windows with standard names: figure 1, figure 2 and figure 3 which ...
0
votes
0answers
32 views

jquery function array next index

hello i just started jQuery not so long ago and I am creating a small plugin for myself, I try to go from page 2 to page 3 but it doesn't work any reason why? Thank you in advance. <script ...
2
votes
2answers
44 views

Table without clustered indexes

I m trying to get an idea about indexes and began with this msdn article. It says, When a table is stored as a heap, individual rows are identified by reference to a row identifier (RID) ...
2
votes
0answers
26 views

Dropping Hypothetical Indexes [migrated]

In the past I thought I'd deleted hypothetical indexes using either a DROP INDEX statement for clustered indexes and DROP STATISTICS statement for non-clustered indexes. I have a database that is ...
0
votes
2answers
49 views

Select from list by index, but keep other associated items in list

If I have a 2dlist of points like this... myList=[['ab','0_3','-1','1'],['bm','2_1','-3','2'],['am','4_1','-1','3'],...]] where '-1','1' for example are x, y coordinates (the last 2 columns) and I ...
0
votes
1answer
13 views

Secondary Index in OrientDB

Is there a way to specify a secondary index in OrientDB? I need something that have all the documents references that have a specified field (like indexable=true).
1
vote
1answer
20 views

How to create an explicit interface declaration index property with CodeDOM

I am trying to create an explicit interface declaration index property. So for example: public interface IFoo { int this[int i] } public abstract class Foo : IFoo { int IFoo.this[int i] } ...
2
votes
2answers
38 views

Duplicate index on seperate dom elements jquery

I have the following html structure <div class="someClass"> <button class="actionButton" id="b0"></button> </div> <div class="otherClass"> <button ...
3
votes
1answer
62 views

Why is Entity Framework losing my indexes?

When I use a database initializer like DropCreateDatabaseAlways or MigrateDatabaseToLatestVersion to create my Entity Framework (5.0.0) database, the resulting schema does not include the indexes that ...
1
vote
1answer
41 views

understanding perf of mysql query using explain extended

I am trying to understand performance of an SQL query using MySQL. With only indexes on the PK, the query failed to complete in over 10mins. I have added indexes on all the columns used in the where ...
2
votes
0answers
29 views

which non-clustered index should i have to use composite or single column in sql server? [migrated]

i have following columns in my database table(Medicines). ID bigint, MedicineName nvarchar(50), BrandName nvarchar(50), MedicineCode nvarchar(20), and price,quantity. i am ...
2
votes
1answer
30 views

What are the differences between 'shrink space compact' and 'coalesce'?

The oracle documentation says that during altering an index clauses shrink space compact and coalesce are quite similar and could be replaced by each other, but Tom found some differences in the ...
2
votes
3answers
163 views

Haskell <<loop>>

With getIndex xs y I want the index of the first sublist in xs whose length is greater than y. The output is: [[],[4],[4,3],[3,5,3],[3,5,5,6,1]] aufgabe6: <<loop>> why getIndex does ...
0
votes
1answer
23 views

Lucene 4.2.0 index pdf

I am using example source code from the Lucene 4.2.0 demo API: http://lucene.apache.org/core/4_2_0/demo/overview-summary.html I run IndexFiles.java to create an index from a directory of rtf, pdf, ...
0
votes
0answers
47 views

Index.php not working [closed]

I get this message whenever I upload an index.php to my server (VPS CentOS) Server error The website encountered an error while retrieving http:// website.com/. It may be down for maintenance or ...
-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
2answers
35 views

StringIndexout of range

I got an error: StringIndex out of range: -1 with error line is String anEmail = lineFromFile.substring(s+1, e). As you can see im trying to print a part of a line in an input file but i doesn't ...
0
votes
1answer
19 views

Rails: Sunspot and Will_Paginate Issue

I've hit a snag with my college project regarding the use of the Sunspot search gem and will_paginate. I've been using sunspot in my project index controller and it was working fine but when I added ...
1
vote
1answer
31 views

Do non-unique indexes provide any performance advantage in pandas?

From the pandas documentation, I've gathered that unique-valued indices make certain operations efficient, and that non-unique indices are occasionally tolerated. From the outside, it doesn't look ...
-3
votes
1answer
34 views

Best performance practice for ID's exclusion in SQL queries [closed]

Which method gain more performance: 1. Query exclusion $exlusionIds = array(1,2,3,4,5); $sth = $dbh->prepare(" SELECT article_id, title, description FROM articles WHERE active = 1 ...
0
votes
0answers
24 views

Service Unavailable, Deploying Application on Google App Engine

HTTP Error 503 (Service Unavailable): The server is currently unable to handle the request. This code indicates that this is a temporary condition and that the server will be up again after a delay. ...
0
votes
0answers
25 views

C# XAML Trouble accessing certain index of a table

So I've got a program that links to a windows azure mobile service database and what I'm trying to do is have a combobox with the zipcodes showing. The zipcodes are in the 5th position on each column, ...
-1
votes
0answers
15 views

Is multi column unique index faster than multi column non-unique index in mysql

I have to create a 2 column index in a mysql table. Combination of these columns is unique. My question is that, is there any significant difference between the performance of unique and non unique ...
-2
votes
0answers
51 views

Why accessing larger index in pandas series takes longer? [closed]

I have a function that I would like to apply element-wise to several series. def my_fun(s1, s2, p1, p2, p3, angle_cutoff, s_cutoff): a1 = xy2angle(p1, s1) a2 = xy2angle(p2, s2) if ...
1
vote
2answers
25 views

How to remove index from array in PHP?

Suppose I have such an array in php: $ray = Array ( [0] => Array ( [id] => 1 [0] => 1 [ip] => 127.0.0.1 [1] => 127.0.0.1 ...
0
votes
1answer
31 views

Rails: Displaying Users on Index Page

I'm trying to style the Users Index page in my project via CSS so that the User Photos and Text appear in a 'Grid' fashion as users register and are added to the database. My users/index.html.erb ...
2
votes
1answer
85 views

Why is my code returning the wrong index number?

How do I write a function, nearest_larger(arr, i) which takes an array and an index. The function should return another index, j. This should satisfy: (a) `arr[i] < arr[j]`, AND (b) there is no ...
0
votes
2answers
29 views

How do i go about replacing a value at a index in a array in php

What I am trying to do is replace a value of a JSON array at the index where the username matches. How do I go about doing this? Below is my trial PHP code and my JSON. Is using array_replace the best ...
0
votes
1answer
37 views

Indexing wikipedia dump with solr

I have solr 3.6.2 installed on my machine, perfectly running with tomcat. I want to index a wikipedia dump file using solr. How do I do this using DataImportHandler? Any other way? I don't have any ...
0
votes
0answers
14 views

Get polygons / indices in Away3D

How to get an object's polygon positions or indices' positions? I can get vertex data which is Vector. but I still don't know which vertices make polygons. I need that for ray intersection check to ...

1 2 3 4 5 81