Skip to main content

Questions tagged [indexing]

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

indexing
-4 votes
1 answer
51 views

Dictionary Update Stops at Index 35

I'm trying to iterate through a list (config_patterns) and add each element as a key to a dictionary (predefined_patterns) with a value of 0. There are 40 elements in this list. However, the final ...
Chi Pham's user avatar
-1 votes
2 answers
67 views

Searching for an Integer with the highest index within a string - C#

String[] digits = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" }; String line = "...
user26430853's user avatar
-1 votes
0 answers
41 views

Improving performance of contains method in ASP.NET MVC web application with large dataset

I have an ASP.NET MVC web application using C#, Visual Studio, and SQL Server. This is my code: if (!string.IsNullOrEmpty(Name)) { query = query.Where(x => x.PatientName.Contains(Name)); } The ...
hud. 's user avatar
  • 168
0 votes
0 answers
9 views

Why am I getting an error trying to use spatial search in Solr?

I am trying to find all points(lat,lng values) that are within a 5 km radius with this line {!geofilt sfield=latlng}&pt=45.15,-93.85&d=5 where latlng is the name of the field in my schema that ...
Savannah Shannon's user avatar
0 votes
0 answers
11 views

MongoDB text search with text indexes slower than using $regex

I have a shoes collection with about 1.4 millions records. I tried to get list of shoes containing "Adidas Men's Clinch-X M Running Shoe" phrase. At first, I did not index the "name&...
untaminh1's user avatar
0 votes
0 answers
21 views

Blocking in Robots.txt - but Page still Indexed [closed]

`I have a website coded with wordpress. My website is currently being indexed by search urls. I don't want this to happen and I have blocked them in the robots.txt file. But they are still crawled and ...
Zappia Motors's user avatar
0 votes
0 answers
24 views

Index & Match in 3 Workbooks (1 to reference the other 2)

I am looking up a specific value that could exist in 1 of 2 workbooks. Site A has its own Inventory Site B has its own Inventory Site C uses a sheet to verify items from both A and B by unique serial ...
C. Smith's user avatar
3 votes
7 answers
118 views

Find index of two identical values in succession for the first time

These are some exemple vectors to reproduce: a <- c(14,26,38,64,96,127,152,152,152,152,152,152) b <- c(4,7,9,13,13,13,13,13,13,13,13,13,13,13) c <- c(62,297,297,297,297,297,297,297,297,297,...
climsaver's user avatar
  • 523
0 votes
0 answers
15 views

Unexpected coordinate switching when reshaping object positions into 3D grid after flattening and integrating

I am working on processing and analyzing velocity field data from VTI files using Python. The workflow includes reading VTI files, extracting velocity data, computing object trajectories, generating ...
Toto's user avatar
  • 11
1 vote
1 answer
19 views

Google Sheets function to return top column value based on highest average in another value, per unique ID

I am tracking values for unique IDs across countries. A unique ID could have multiple data rows in the same country, but with different amounts. I want to have a dropdown where upon selecting the ...
waroti50's user avatar
0 votes
0 answers
13 views

Sitefinity-Unable to complete the search indexing

On my local machine, I have set up an existing project running on Sitefinity 14.0. When I try to re-index, it shows as in progress and never finishes. I am able to browse the site and various pages ...
Suresh R's user avatar
  • 249
0 votes
0 answers
7 views

how to access amazon secret manager from nginx.conf for react.js google search indexing

I have a website www.jermasearch.com that I can trying to give good search engine optimization so it shows up in google searches, and displays a nice preview card when the link is shared on social ...
Martin's user avatar
  • 1,598
0 votes
0 answers
34 views

PostgreSQL pg_hint_plan index hint is ignored for some executions of the same query

I'm trying to use pg_hint_plan to force the query planner to use a specific index for one of my queries. Looking at the server logs, it appears to work most of the time, but for some executions of the ...
shinlang's user avatar
1 vote
2 answers
28 views

Angular, How lazy loaded components get crawled and indexed by google bot

we load angular component on scroll for better page performance but these component content not crawled by google bot. we have implemented angular ssr & prerendering. we are using scroll event @...
user2486706's user avatar
-1 votes
1 answer
28 views

Refresh Solr stock after ordering

We have a business requirement that forced us to do a live refresh of stocks in Solr every after a user orders. What I did was created a new action in our orderProcess.xml that will put a lock, run ...
iamrooovic's user avatar

15 30 50 per page
1
2 3 4 5
2296