0
votes
8answers
112 views
Should one use PHP to print all of a page’s HTML?
Hi
So I've always developed PHP pages like this: <?php goes at the top, ?> goes at the bottom, and all the HTML gets either print()ed or echo()ed out. Is that slower than ha …
0
votes
4answers
65 views
Most important speed issues
I am participating in Al Zimmermann's Programming Contest.
http://www.azspcs.net/Contest/SonOfDarts
I have written a recursive algorithm but it takes a long time to run. I was …
1
vote
3answers
63 views
Same MySQL query takes 0.3 sec in MyPHPAdmin, 7.9 sec in PHP — Why?
I am running the following MySQL query:
select * from combinations where family_type='f597';
on a table that has about 90,000 lines. If I run the query via MyPHPAdmin, it takes …
1
vote
5answers
243 views
What is faster on division? doubles / floats / UInt32 / UInt64 ? in C++/C
Hi everyone,
I did some speed testing to figure out what is the fastest, when doing multiplication or division on numbers. I had to really work hard to defeat the optimiser. I got …
0
votes
1answer
72 views
(PHP) Validation, Security and Speed - Does my app have these?
Hi all,
I am currently working on a building community website in PHP. This contains forms that a user can fill right from registration to lot of other functionality. I am not an O …
1
vote
0answers
84 views
Insanely slow web site performance [closed]
Hi everyone,
I recently started development work on an existing web site that has been loading pages extremely slowly. I know that it is being served by Apache, but I don't have a …
1
vote
4answers
106 views
What is more efficient in python new array creation or in place array manipulation?
Say I have an array with a couple hundred elements. I need to iterate of the array and replace one or more items in the array with some other item. Which strategy is more efficient …
2
votes
3answers
44 views
How to change the default parameters for newfit() in MATLAB?
I am using
net = newfit(in,out,lag(j),{'tansig','tansig'});
to generate a new neural network. The default value of the number of validation checks is 6.
I am training a lot o …
1
vote
2answers
77 views
Speed difference: separate functor VS operator() inside a big class with *this
I'm using the c++ STL heap algorithms, and I wrote a wrapper class around it so I could do some other stuff. When I tried to use the code below, for example:
//! Min-heap wrapper …
1
vote
5answers
64 views
Which multilingual web design solution is fastest for the user, if this is indeed an issue?
Context:
I'm in the design phase of what I'm hoping will be a big website (lots of traffic, lots of users reading and writing to database).
I want to offer this website in the thr …
3
votes
3answers
120 views
Speeding Up the First Page Load in django
When I update the code on my website I (naturally) restart my apache instance so that the changes will take effect.
Unfortunately the first page served by each apache instance is …
0
votes
6answers
100 views
Which mysql select is better/faster?
Is there a preferred way? There are currently 1640 rows in the game table to go through and will be adding about 1200 every year.
SELECT `date` FROM `game` WHERE `date`<'2009- …
2
votes
5answers
177 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
146 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
265 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 …
