1
vote
5answers
193 views
C# += (plus equals) (Assignment by addition) working very slow, when string is too long?
Hello,
I have a for loop and what I do is this.
forloop ( loop 7000 times)
{
x += 2000_char_long_string;
}
Code lasts really long time in this forloop, maybe more than 1 minut …
0
votes
5answers
398 views
Anyone implemented Endeca with .NET? Would you recommend Endeca or FAST?
Which search engine would you recommend for a Commerce website?
We have millions of products in a catalog and we want it to be as quick as possible.
We would also want to make su …
2
votes
24answers
1k views
Is C faster than C++?
I've heard many opinions on this subject, but never saw any good proofs that C is faster than C++. So, ...is C faster than C++?
EDIT: This is a Runtime comparison.
0
votes
2answers
18 views
Fast ESP character normalization
Hi,
I'm running a search application on a FAST ESP server. Now I have this problem with character normalization.
What I want is to search for 'wurth' and get a hit in 'würth'.
…
1
vote
7answers
158 views
Need a fast random generator for c++
Hi guys.
I'm trying to do some opt-3 swapping on my TSP generator for euclidian distances, and since I in many cases have more than ~500 nodes, I need to randomly select at least …
2
votes
2answers
407 views
Fast little-endian to big-endian conversion in ASM
I have an array of uint-types in C#, After checking if the program is working on a little-endian machine, I want to convert the data to a big-endian type. Because the amount of dat …
2
votes
0answers
69 views
fastest backup for large files [closed]
what is the fastest way to duplicate a folder contain few files with few hundred megs size and other few megs small files? (say, /var/lib/mysql)
cp or tar or rsync or...??
4
votes
4answers
89 views
Caching data vs. writing in memory table
Which would be the best way to achieve a fast hash / session storage with one of these three ways?
Way 1:
Create a memory table in MySQL that stores a hash and a timestamp when th …
1
vote
3answers
45 views
How does fast user switching affect a windows service?
How does fast user switching affect a windows service? Are the services suspended? or do they keep running in the background when a different user logs in?
3
votes
3answers
218 views
What is the fastest (built-in) comparison for string-types in C#
What is the fastest built-in comparison-method for string-types in C#? I don't mind about the typographic meaning here it's only for use in sortedLists and stuff like that to searc …
0
votes
6answers
161 views
Javascript - Fastest way of copying an array portion into another
I need to copy FAST a portion of an array into another, replacing it's old values.
No range checkings needed.
Number of items to copy: 16384
The array only contains integers
be …
1
vote
4answers
127 views
Efficient Immutable Map Implementation?
Hi, I'm wondering if there is an implementation of a map which is:
Immutable, so that I can use it in
functional programming, and
effortlessly ensure transactions and concurrency …
0
votes
2answers
107 views
which is the fasted method to draw a large DIB onto Screen in windows
I am programming in windows c++.
I want to know which is the fasted method to draw a DIB onto Screen.
The image maybe stretched.
Faster than StretchDIBits, Faster than SetDIBitsTo …
0
votes
7answers
369 views
In C, which is faster: if with returns, or else if with returns?
Is it better to have if / else if, if every block in the if statement returns, or is it better to have a chain of ifs? To be specific, which if fastest:
A:
if (condition1) {
co …
1
vote
3answers
88 views
Are there any technologies that help develop website search?
Hi guys,
PROBLEM:
I need to write an advanced search functionality for a website. All the data is stored in MySQL and I'm using Zend Framework on top. I know that I can write a sc …
