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

learn more… | top users | synonyms

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, ...
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
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 ...
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 ...
-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 ...
1
vote
2answers
322 views

htaccess and url redirecting

I'm working on an MVC PHP application. My .htaccess: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ...
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 ...
4
votes
2answers
2k views

jQuery Cycle plugin- How to return the index number of the currently displayed slide?

I'm currently using Malsup's Cycle plugin . I am just wondering is it possible to have cycle plugin return the index number of the currently displayed slide?? I want to change the content of the ...
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 ...
2
votes
2answers
454 views

How do I recreate a clustered index on another column in SQL Azure?

SQL Azure not only requires each table to have a clustered index, but also disallows DROP INDEX for clustered indices. Now I have a table which erroneously has a clustered index on column A and I ...
0
votes
3answers
937 views

Finding index of a substring in COBOL

I'm looking for the positions in a string where a specified substring occurs. E.g, looking for substring "green" in the the string "green eggs and ham" should return me 1, but from "green eggs and ...
-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 ...
2
votes
2answers
1k views

Rails and Postgres Hstore: Can you add an index in a migration?

I have a migration where I create a products table like so class CreateProducts < ActiveRecord::Migration def change create_table :products do |t| t.string :name t.hstore :data ...
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
2answers
24 views

How to change separate associative arrays to something usable such as one indexed array?

print_r($element_attrs); returns the following arrays which are gathered from an xml file. Array ( [WEATHER-SUMMARY] => Increasing Clouds ) Array ( [WEATHER-SUMMARY] => Thunderstorms ) Array ...
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, ...
0
votes
5answers
766 views

Setting up an array with jQuery .each() function?

I'm trying to set up an array through jQuery's .each() function, but it seems like I'm not properly doing it? I have attributes in the html such as: <div class="cheers" data-fname = "fname" ...
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 ...
1
vote
1answer
1k views

Putting an int extra in intent causes launched activity to crash on launch

I'm launching an activity in my Android app, and I want to give it an integer by adding it as an extra to the intent. This works fine in the emulator, but when I try it on an actual phone (some sort ...
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
3answers
4k views

i got a undefined index error when file upload in php

i searched again and again but could not find the right answer. here is the situation. i got more than one forms in the same php file and below shows the code. when i echo as below echo ...
-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 ...
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
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
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 ...
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 # ...
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. ...
4
votes
2answers
111 views

Why is PostgreSQL (9.1) not using index for simple equality select?

My table lead has an index: \d lead ... Indexes: "lead_pkey" PRIMARY KEY, btree (id) "lead_account__c" btree (account__c) ... "lead_email" btree (email) "lead_id_prefix" btree (id ...
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 ...
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 ...
1
vote
1answer
1k views

Apache2 DirectoryIndex Issue

I am a little stuck and am sure that this is a trivial problem, but just can't seem to find the right solution. I have a local development server running apache2 w/mod_ssl & mod_rewrite. I ...
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 ...
13
votes
6answers
10k views

Django: create Index: non-unique, multiple column

Given the following model, I want to index the fields (sequence,stock) class QuoteModel(models.Model): quotedate = models.DateField() high = models.FloatField() #(9,2) DEFAULT NULL, ...
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
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
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> ...
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
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 ...
5
votes
6answers
982 views

How do I manipulate/access elements of an instance of “dist” class using core R?

A basic/common class in R is called "dist", and is a relatively efficient representation of a symmetric distance matrix. Unlike a "matrix" object, however, there does not seem to be support for ...

1 2 3 4 5 80