2
votes
5answers
144 views
Quicker ways to search a C# List<String>
I currently have a list called regkey and a string called line_to_delete, which I obviously want to delete from the list. At the moment I'm searching through one element of the lis …
1
vote
7answers
129 views
How to synchronize and combine results from multiple threads in C++?
I have a data feed continuously feeding data packet in. There are 5 threads(A, B, C, D, E) processing the data packages. Note the 5 threads have totally different speed and they ge …
5
votes
7answers
231 views
Is object-oriented PHP slow?
I used to use procedural-style PHP. Later, I used to create some classes. Later, I learned Zend Framework and started to program in OOP style. Now my programs are based on my own f …
0
votes
3answers
37 views
Calls to webservice are slow, should i be using something else?
Hi,
Currently we got a web service up and running that handles all our C.R.U.D calls to our database, and pretty much every interaction between user and the database.
(starting wi …
1
vote
3answers
36 views
Firebird 2.0 transaction SELECT performance
In Firebird 2.0, is using an explicit transaction faster on a SELECT command than executing the command with an implicit one?
0
votes
1answer
51 views
Fastest way to write a large file on the iPhone?
This app i'm working on allows the user to take pictures, and saves them locally (a small thumbnail image via Core Data, and the full-size image in the documents directory). I'm fi …
5
votes
6answers
246 views
Vector initializing slower than array…why?
I tried 2 things: (pseudo code below)
int arr[10000];
for (int i = 0; i < 10000; i++)
{
for (int j = 0; j < 10000; j++)
{
arr[j] = j;
}
}
and
vector<in …
1
vote
3answers
56 views
Help in optimizing a query for a Postgresql database
I'm trying to find some suggestions in optimizing a query that I'm using to fetch a large group of data.
The original code that I'm working on looped through a large set of users, …
0
votes
2answers
67 views
Balance between fast and secure: time sensitive password encryption algorithm
I'm working on a client<>server multiplayer game. The authentication is done on the same server as all game logic etc. This means that my authentication password encryption algo …
0
votes
2answers
55 views
MySQL extremely slow under Snow Leopard
Hi.
I've installed MySQL 5.1.40 Source distribution (64-bit executable x86_64) following these instructions by Hivelogic and the mysql (2.8.1) gem using ARCHFLAGS="-arch x86_64" …
2
votes
5answers
110 views
How to increase deserialization speed?
Serializing/deserializing with BinaryFormatter, resulting serialized file is ~80MB in size. The deserialization takes a few minutes. How could I improve on this? Here's the deseria …
0
votes
3answers
124 views
fastest algorithm to get average change
I have a sorted dictionary where the key is a date and the value is a integer that represents time left. i have 3 years worth of data
so it would be something like
Key: 2009-1-1, …
1
vote
7answers
229 views
What is the fastest language that runs on the JVM
What is the fastest language that runs on the JVM?
Scala? Groovy? JRuby?
1
vote
2answers
33 views
XML vs. Array in Flash
In manipulating data in Flash, which data format gives faster speeds in terms of searching and manipulation, XML or nested associative arrays? Meaning I currently send data in stri …
0
votes
7answers
226 views
What is the fastest way to parse this string.
I have a string, that is in the following format:
[Season] [Year] [Vendor] [Geography]
so an example might be: Spring 2009 Nielsen MSA
I need to be able to parse out Season and …
