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

learn more… | top users | synonyms

2
votes
2answers
58 views

Haskell <<loop>>

With "getIndex" I want the index of the first sublist which length is > y The Output is: [[],[4],[4,3],[3,5,3],[3,5,5,6,1]] aufgabe6: <<loop>> why getIndex does not work? import ...
0
votes
1answer
7 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
46 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 ...
-1
votes
1answer
23 views

MySQL - How to add index to certain column?

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
34 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
17 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 ...
0
votes
1answer
23 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
30 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
17 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
24 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
13 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
50 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
75 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
27 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
29 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
10 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 ...
0
votes
0answers
12 views

Spring-Data does not find IndexFields for Indices created via MongoDB shell

we are using Spring-Data-Mongo to access our MongoDB from a Java application. In general everything works fine but I encountered one odd behavior. When initializing our Repositories in the Java code ...
1
vote
0answers
29 views

Extracting unique values from a range of cells across multiple pages.

I currently have a table with 5 columns. The 2nd and 3rd columns have values which change depending on the 5th column's value. See below: Sheet1: 1 A B C D E 2 # ...
1
vote
2answers
59 views

is there an easy way to find index array zeros in Fortran?

I'm searching for intrinsic fortran functions to help me find the array index with zeros, or other value. I only found minloc function, but I think this is not suitable. Is there an matlab find ...
0
votes
2answers
34 views

Show options on dropdown menu from a column - PHP MYSQL

I have a following code: <?php session_start(); include("control/connect.php"); $query = NULL; $query= "select * from category"; $result = mysql_query($query); ?> ...
0
votes
2answers
20 views

Find year index from month indexes

How to find year index from a given month index? For example, if the monthly array has 120 elements: [0, 1, 2, ... , 119] When I'm looping this array I need to get out what year index the item is. ...
0
votes
4answers
45 views

Getting table column index using jQuery

I have adequate knowledge about jQuery and its usage but today i got into a trouble of getting the column index of matching label inside th element of table using jQuery. I want to get the index of th ...
0
votes
0answers
14 views

How about a sorted Hash index?

Hash index is very quick at searching for a specific row, while b-tree is good at range search. But why not create something like sorted hash index? where you could also get a range of results with ...
0
votes
4answers
68 views

C++ array accessing

let's say I have: int test[10]; on a 32bit machine. What if I do: int b = test[-1]; obviously that's a big no-no when it comes to access an array (out of bound) but what actually happens? Just ...
0
votes
1answer
13 views

Tuple index out of range Tkinter

So I've got a program that should take a function as input and graph it on a Tkinter canvas. def draw(self): self.canvas.delete(ALL) for n, i in enumerate(self.sav): ...
-2
votes
3answers
48 views

Access a PHP array element by using a JavaScript variable as index

The code looks like this: PHP file <?php ... $arrayName = ['ArrayValue_0', ..., 'ArrayValue_n']; ... php?> JavaScript $('.elementClass').each(function(index, id) { $(id).html('<?php ...
0
votes
1answer
18 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 ...
0
votes
3answers
78 views

How to find an Index of a string in a list

So what I am trying do is retrieve the index of the first item, in the list, that begins with "whatever", I am not sure how to do this. My attempt (lol): List<string> txtLines = new ...
0
votes
0answers
24 views

How to get an element's index by using xPath and text value

I have following structure <div class='list'> <div class='column'>aaa</div> <div class='column'>bbb</div> ... <div class='column'>jjj</div> ...
3
votes
1answer
39 views

search engines index html5 web application with nodejs backend

I'm building an html5 web application with knockoutjs + backend rest service in nodejs (custom rest api, I'm not using express and i deliver only json data - no html). The application is working fine ...
0
votes
2answers
54 views

Random exhaustive (non-repeating) selection from a large pool of entries

Suppose I have a large (300-500k) collection of text documents stored in the relational database. Each document can belong to one or more (up to six) categories. I need users to be able to randomly ...
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
2answers
87 views

Reading x,y values from a .txt file in c#

I'm trying to read x and y values from a text file into a string array where the line is being split on the ',' However, when I run this code I get an error saying the index was out of the bounds of ...
2
votes
7answers
121 views

Find max element in Java ArrayList

I have such simple code: import java.util.ArrayList; import java.util.List; public class Main { /** * @param args the command line arguments */ public static void main(String[] ...
1
vote
0answers
33 views

MongoDB indexonly:true slower than indexonly: false?

I have a test collection with 5 million records: for(var i = 0; i < 5000000; i++) { db.testcol.insert({field1: i}) } Inserted an index: db.testcol.ensureIndex({field1:1}) Now the funny ...
0
votes
4answers
21 views

How to get element's index by xpath?

I've next structure : <div id='list'> <div class='column'>aaa</div> <div class='column'>bbb</div> ... <div class='column'>jjj</div> </div> ...
0
votes
1answer
23 views

Indexing column for full text search

I have column col with data type CHARACTER VARYING I need that index this column as gin index. If trying directly set gin index to column, returned error: data type character varying has no ...
0
votes
0answers
22 views

how to search word from String field in Lucene Index

How to search word from Lucene index String field ? i have lucene index with field TITLE ,containts Document titles eg:TV not working,Mobile not working i want to search particular word from title ...
0
votes
1answer
15 views

index last character of a raw_input string

I'm pretty desperate to get moving with my code and need help! I am new to programming and have learned only recently how to slice. I am practicing by writing my own code similar to pyg latin except ...
0
votes
1answer
40 views

undefined method `define_index' with thinking-sphinx

Getting this error when I run rake ts:index, or rake ts:configure. I can't remember everything I have tried - most of the solutions I found had to do with older versions of gems, etc. Obviously, it is ...
0
votes
0answers
47 views

Does an index aid in leading wildcard searches?

I have a table, users, with the following columns: ID int, pk, clustered index Address nvarchar(50), Date_Of_Birth date Name nvarchar(200) Name contains values like ...
0
votes
1answer
20 views

Vector as column index in matrix

Given A matrix A (mxn) and a vector B (m,1) I want to create a vector C (m,1) in which each row element is the row element of A from a comlumn indexed by B. Is it possible to do this, without using ...
0
votes
2answers
43 views

two indices in one table, is second index which is used only in where clause worth it?

Lets say, I have the following mysql table : CREATE TABLE player ( id int(9) unsigned NOT NULL DEFAULT 0 , score MEDIUMINT(8) unsigned NOT NULL DEFAULT 0, signupdate DATE NOT NULL, ...
-1
votes
3answers
35 views

IndexOutOfBounds, but why?

I'm writing an app's code and when I enter only 2 numbers I get indexoutofbounds Length=2 Index=2. Why is this/how can I circumvent it? Here is my code: Arrays.sort(newNums); double ...
0
votes
2answers
59 views

In C, initializing an array using a variable led to stack overflow error or caused R to crash when code is called in R

Okay. My original question turned out to be caused by not initializing some arrays. The original issue had to do with code crashing R. When I was trying to debug it by commenting things out, I by ...
-1
votes
1answer
42 views

Getting The Array Index From string.toCharArray()

I am making an inefficient calculator type of program that takes values from user defined arrays and plugs them into an equation that the user also defines. To do this I needed to make my program ...
0
votes
1answer
24 views

Defining tablespace for local index in Oracle

When we generate scripts to create indexes for partitioned tables, we currently have something like this: CREATE INDEX "SCHEMA"."INDEX_NAME" ON "SCHEMA"."TABLE_NAME" ( "COLUMN_NAME" ) LOCAL ( ...
5
votes
1answer
73 views

Type of array index in C#?

What is the type of an array index in C#? For example, in the code below, would the index be cast in an int before accessing the array element (third line)? T[] myArray = new T[255]; byte index = 2; ...

1 2 3 4 5 80