1
vote
2answers
23 views
How to efficiently use MySQLDB SScursor ?
Hi,
I have to deal with a large result set (could be hundreds thousands of rows, sometimes more).
They unfortunately need to be retrieved all at once (on start up).
I'm trying t …
1
vote
7answers
176 views
Does a boolean condition in a for loop that is always false get optimized away?
I have the following situation
bool user_set_flag;
getFlagFromUser(&user_set_flag);
while(1){
if(user_set_flag){
//do some computation and output
}
/ …
1
vote
8answers
141 views
Algorithm to find matching pairs in a list
I will phrase the problem in the precise form that I want below:
Given:
Two floating point lists N and D of the same length k (k is multiple of 2).
It is known that for al …
0
votes
4answers
26 views
about mysql index, multi-column or one?
I have a sql like this:
SELECT * FROM tableA WHERE column_a = sth AND colun_b > sth
so, how do I create index for it?
One index for two column
Two indexes for each colu …
3
votes
1answer
45 views
Optimising Searching of a 2-dimensional Array with LINQ
I have a 2-dimensional array of objects (predominantly, but not exclusively strings) that I want to filter by a string (sSearch) using LINQ. The following query works, but isn't as …
1
vote
2answers
75 views
Speeding up self-similarity in an image
I'm writing a program that will generate images. One measurement that I want is the amount of "self-similarity" in the image. I wrote the following code that looks for the countB …
1
vote
3answers
107 views
Basic skills to work as an optimiser in the gaming industry
I'm curious about a certain job title, that of "senior developer with a specialty in optimisation." It's not the actual title but that's essentially what it would be. What would th …
1
vote
1answer
24 views
Sub-query Optimization Talk with an example case
Hello guys,
I need advises and want to share my experience about Query Optimization. This week, I found myself stuck in an interesting dilemma.
I'm a novice person in mySql (2 year …
2
votes
2answers
53 views
Are there better ways to overwrite a file then check for changes (in C#)?
Situation:
I have a C# program which does the following:
Generate many files (replacing the ones generated last time the program ran.)
Read those files and perform a time-consum …
1
vote
1answer
10 views
Problem with session in zend framework
Hello everyone.
I am trying something in the zend Framework
I have create a project with zend_tool.
I have 2 controllers
artist controler
account controler
Within the accou …
12
votes
8answers
195 views
Very slow MYSQL query for 2.5 million row table
Hi,
I'm really struggling to get a query time down, its currently having to query 2.5 million rows and it takes over 20 seconds
here is the query
SELECT play_date AS date, COUNT …
1
vote
6answers
141 views
How many threads to create?
Hello everyone,
I am just learning how to write mutithreaded programs right now and I have a hypothetical question about how many threads are optimal for a program.
Let me desc …
1
vote
1answer
35 views
Can it be advantageous for a method to return IOrderedEnumerable<T> instead of IEnumerable<T>?
Can it be advantageous for a method to return IOrderedEnumerable instead of IEnumerable?
0
votes
4answers
80 views
Need Help regarding Optimization
Hello,
First of all I am an autodidact so I don't have great know how about optimization and stuff. I created a social networking website.
It contains 29 tables right now. I want …
0
votes
3answers
69 views
MySQL optimisation by sorting the rows
Hello everybody!
I am not an expert of MySQL, and I have search a lot about the following problem without finding the solution.
So, I'm using a MySQL table with this structure:
…
