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

learn more… | top users | synonyms

0
votes
0answers
11 views

Lucene based search engine to index and search files in jsp from directory

How to implement lucene search engine to immediately index the uploaded file in jsp in a directory and search users input and show the result with download option.
0
votes
0answers
31 views

SQL - Request to long - Which index should I create?

I have a table called eod, with more than 1,5M row, and there is a sample of it. (I'm using MySQL) | eod_id | company_symbol | date | open | close | high | low | volume | | 1 | ...
0
votes
0answers
69 views

InvalidArgument=Value of '0' is not valid for 'index'

I have a ComboBox in windows form application and I am filling combo box from a Dictionary dynamically as I entered text into the ComboBox accordingly but I get the error: InvalidArgument=Value of ...
1
vote
3answers
46 views

php explode - needing second element

more out of interested... $_GET['unique'] = blahblahblah=this_is_what_im_interested_in I know I can get the second element like this: $words = explode('=', $_GET['unique']); echo $words[1]; Is ...
0
votes
1answer
27 views

PHP: index operations inside query possible?

I have an array ($updateInputs) with 6 elements, 6 / 2 which each 3 belong to a single row in a database table. What I'm trying to do is put a query in a while loop so that every iteration, the index ...
-1
votes
1answer
28 views

“Expected Expression” error when adding an IBAction to a button index

here's my code, I'm getting the error on line 4 with the IBAction, "expected expression" -(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex { if ...
-2
votes
0answers
40 views

Getting the index of an element from array [closed]

I'd like to get the index of an element in array $images = parseXmlFileForTagName("Rambod_catalog.xml","Thumbnail"); function parseXmlFileForTagName($xmlFile, $tagName) { $doc = new DomDocument; ...
0
votes
4answers
41 views

Retrieving array values using indexOf

I've created an array like the one below, var array = ['hello', 'hi', 'good morning', 'sweet', 'cool', 'nice', 'hey!', 'how you doin?', 'Thanks!']; var index = array.indexOf('good morning')//This ...
0
votes
3answers
50 views

How to check value of column in spreadsheet in Python

I'm trying to write a condition based on whether a value in a column of a csv is a certain string. This is my code, where I will execute some stuff based on whether the content of the cell in the ...
0
votes
1answer
58 views

Oracle convert DECODE to PIVOT or force use of index

I have a very complex SQL view definition that has been inherited and requires altering to improve performance. It takes a list of records based on a foreign key and displays the rows returned as ...
0
votes
2answers
30 views

Get the position of the clicked list item

lets say we have this markup: <header> <nav> <ul> <li><a href="">first (not)</a></li> <li><a ...
1
vote
1answer
19 views

Creating a sparse index with pymongo

I need to create a sparse index from the python script using pymongo. It seems like both collection.create_index and collection.ensure_index don't support sparse option. According to the mongodb ...
1
vote
1answer
24 views

How do you index a Set of UUIDs in Hibernate Search?

I have an entity in my application, which has a Set<UUID> on it, which I would like to index. So far, I've tried putting @IndexEmbedded, @Field and @FieldBridge (which takes a UUID, not ...
0
votes
1answer
35 views

MySQL query with empty WHERE - index optimization [closed]

For an index page of an app I need to pull all entries from a table from MySQL-DB. It is possible to set filters, but initially the where-clause is WHERE 1=1. While that returns the expected results ...
0
votes
0answers
11 views

Determining the index of a PictureBox list item in a For Next Loop

I am a new programmer and have a question in regards to determining the index of an item in a PictureBox list as follows; For Each pic As PictureBox In senetBlocks Dim picIndex = ...
2
votes
2answers
98 views

Why does query without WHERE clause take longer if table doesn't have index?

I ran a Select * from TABLE from two identical tables, the only difference was that one didn't have indexes. The table that didn't have any indexes took 7 minutes and the one with indexes took 5 ...
0
votes
0answers
11 views

Audio sequence issue in collection view didSelectItemAtIndexPath

Sequence of audio files in collection view cell is wrong. In first cell it plays nothing, in second cell it plays first audio file, in third cell it plays second audio file , in fourth cell it plays ...
0
votes
2answers
45 views

Assemble strings for particular ID by order of index. Python

So I have a list of sublists The first value of the sublist is the ID, the 2nd value is the index. Ultimately, i'm trying to assemble strings for each ID in the order of the indices. raw_IDs = ...
0
votes
1answer
12 views

Load audiofile array to collection view cells in sequence manner

I have loaded images and labels to custom collectionview cells in this method - (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath; Cell ...
1
vote
1answer
47 views

word vba- how to get index value of word during find

Is it possible to get the word index during .find? I do .find.text to get the word, but I need its index position, then save it in an array. normally, it is documents("doc").word(index) but ...
1
vote
1answer
39 views

Info about neo4j & spatial plug in

Sorry for my english Im a new user here, and I have saw information about neo4j, Im using Neo4j 1.9 and now i install a spatial plugin ...
-1
votes
1answer
31 views

Change index in matrix

I'm trying to change the matrix index, by storing values, but I'm not quiet sure how to do it. I have a matrix imported from Excel, where the values in the first row and column indicating a week ...
1
vote
2answers
59 views

Index out of Range exception in C# when iterating through an array

I have this code I'm using to create a program that takes a a range and outputs to the Console the prime numbers. I have one problem, I'm trying to iterate through the array I built so the loop should ...
2
votes
3answers
33 views

Undefined index/row errors

Well after learning how to fix most of my undefined index errors, at the end of the day I had a couples strange errors I could not fix with isset (or at least not when I tried). The first one is ...
0
votes
0answers
21 views

How to create a partition for mysql database?

I have questions about partition my MySQL tables. I have a very large table with 5 Million Records. It is a transnational database so this table is going to keep incriminating. So I am thinking to add ...
-2
votes
1answer
24 views

php decode function with variables [closed]

E_NOTICE : type 8 -- Undefined index: $realName -- at line 26 *This is the error I'm getting. This is my function function stats($label, $realName){ global $decode; echo ...
0
votes
1answer
15 views

Smarty foreach arbitrary loop - use index to add different classes?

I have an array called $items, and i'm trying to style only the first 3 items different from the rest. I thought the following code... {foreach from=$items item=item} {if $smarty.foreach.item.index ...
0
votes
1answer
27 views

Clustered and nonclustered index large data insert

I had a clustered index on 5 keys (columns). I had an unclustered index on 2 columns. Because I'm inserting 2-3 million rows in one run, I changed the 2 column unclustered index to clustered and ...
-1
votes
1answer
82 views

List out of index range [closed]

hey guys i didn't see one that fit what i'm trying to figure out so i thought i'd ask. I get an error of a list index out of range when i open a .csv of over 500,000 but when i do a a smaller version ...
-1
votes
0answers
30 views

Undefined index errors… [PHP] [closed]

today I am trying to do a basic code off a basic discussion board tutorial... Basically, I get HUGE unidentified errors everywhere. I am trying to accomplish this tutorial ...
2
votes
1answer
74 views

How does one append large amounts of data to a Pandas HDFStore and get a natural unique index?

I'm importing large amounts of http logs (80GB+) into a Pandas HDFStore for statistical processing. Even within a single import file I need to batch the content as I load it. My tactic thus far has ...
1
vote
1answer
37 views

Check mark the box with the correct text JQUERY

<div class="posts"> **<input id="chkbox_0" type="checkbox" value="chck_0" name="list" style="float:left;height:95px; width:15px;">** <div class="title box " ...
0
votes
4answers
99 views

C# Fastest way to find the index of item in a list

I want to know what is the fastest way to find the index of an item in a list. The reason I want to know is because I am making a XNA render but I started getting out of memory exceptions on larger ...
-4
votes
1answer
49 views

array out of index error - jacobi method implementation

public class testrun { public static double ellipticalequn(float x, float y){ double exp; exp=(-2)*Math.exp(Math.pow((y-(.35*6.5)),2)-Math.pow((x-(.75*8)),2)/(2*.05*6.5)); ...
1
vote
1answer
25 views

Index of rows in data frame A, which is contained in data frame B

I have two data frames, A and B. a1 <- c(12, 12, 12, 23, 23, 23, 34, 34, 34) a2 <- c(1, 2, 3 , 2, 4 , 5 , 2 , 3 , 4) A <- as.data.frame(cbind(a1, a2)) b1 <- c(12, 23, 34) b2 <- c(1, ...
0
votes
1answer
30 views

Column name is masked in oracle indexes

I have a table in oracle db which has a unique index composed of two columns (id and valid_from). The column valid_from is of type timestamps with time zone. When I query the SYS.USER_IND_COLUMNS to ...
0
votes
1answer
86 views

Program not recognizing ArrayList Index

Below I've posted a snippet of my code that I am having some trouble with. Every time I run this program I get an error saying that Exception in thread "AWT-EventQueue-1" ...
3
votes
4answers
80 views

MySQL optimizing INSERT speed being slowed down because of indices

MySQL Docs say : The size of the table slows down the insertion of indexes by log N, assuming B-tree indexes. Does this mean that for insertion of each new row, the insertion speed will be slowed ...
0
votes
1answer
11 views

Database indexes and combinations

I've read in several places that you make any field used to restrict the results of a query into an index. But suppose you have an application in which different queries use different combination of ...
1
vote
2answers
38 views

difference between text_general and text_en in solr?

I find I can use different tokenizer/analyzer for different language for text_general field. But there exists text_en as well. Why do we need two? Suppose we have a sentence in an asian language ...
2
votes
3answers
44 views

Creating index on mysql table

I have a table called data in mysql database. The table is quite large and has about 500k records and this number will grow up to 1 million. Each record consists of about 50 columns and most of them ...
2
votes
1answer
29 views

Resample a time series with the index of another time series

I have 2 data frames with identical columns but different datetime indices. I want to resample one of them to use the index of the other and forward fill data from the one on any dates in the index ...
0
votes
2answers
30 views

Composite primary key limit?

Is it OK if I create a composite primary key from 4 columns? Like: PRIMARY KEY(name, slug, type, parent) So there should not be more than one row with the same name, slug, type and parent. Are ...
0
votes
0answers
12 views

Get QTabWidget Tab to redraw on currentChanged

I'm a bit new to python/qt and I have a strong problem to redraw my tab when the current tab Changed. I would like to redraw one of them when the user is changing. (Only when it's needed... the ...
2
votes
1answer
66 views

Are there any extensions to TADOQuery that include client indexes

Quick question (hopefully) I have a large dataset (>100,000 records) that I would like to use as a lookup to determine existence or non-existence of multiple keys. The purpose of this is to find FK ...
1
vote
1answer
37 views

Is it possible to explicitly to refer to indexes by their name in pandas data frame?

In pandas DataFrames allow a combination of columns to build an index (if every row has a unique combination of values from these columns). One of the benefits of doing that is simplification of the ...
0
votes
1answer
17 views

Should I use FULLTEXT index for varchar?

If I have a structure like this: CREATE TABLE IF NOT EXISTS `sheet` ( `id` int(11) NOT NULL, `title` varchar(80) COLLATE utf8_unicode_ci NOT NULL, `html` text COLLATE utf8_unicode_ci NOT NULL, ...
0
votes
3answers
33 views

Unexpected index on two variables in PHP form

So doing a simple registration into database, but the value of First Name and Last Name is getting unexpected index but account type username is fine. HTML code: <form method="post" ...
0
votes
1answer
13 views

Is it possible to change column index in rails 3 migration?

I have a table 'users' with column 'email'. It used to be unique (with index), but a new requirement is to allow nils there. Is there a better solution than: remove_index :users, :email ...
0
votes
0answers
5 views

How to cleanly reset the home page of my wordpress based website to show the blog instead of a splash page?

I have a problem that sounds simple but is proving to be a headache. When I first set up my site, I created a custom home page which functioned as a splash page and created a blog template page. ...

1 2 3 4 5 84