1
vote
1answer
27 views
Slow response from getaddrinfo
I'm using getaddrinfo to do DNS queries from C++ on Windows. I used to use the Windows API DnsQuery and that worked fine, but when adding IPv6 support to my software I switched to …
0
votes
0answers
80 views
Slow network file copy on Windows 7
I wrote a program that uses xcopy to transfer files (usually between 1KB and 2MB) over our intranet. Usually, I am copying files from my host machine (Windows 7 x64) to a VMWare vi …
3
votes
4answers
273 views
.NET MVC Slow Site
I have a site that is taking around 20 seconds to load every page (no matter what it does)
So i put in a /scripts/test.html that isn't part of a route and it still takes this long …
0
votes
2answers
102 views
Slow screen drawing in .Net C# winforms application
I have a very large C# .net 2.0 winforms application which has some drawing issues.
When going into different forms you can see controls being drawn and even the title bar of the …
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 …
3
votes
8answers
162 views
How to speed up Visual Studio 2008? Add more resources?
Hello,
I'm using Visual Studio 2008 (with the latest service pack)
I also have ReSharper 4.5 installed.
ReSharper Code analysis/ scan is turned off.
OS: Windows 7 Enterprise Editi …
7
votes
7answers
217 views
Site slows for individual users, but they can switch browsers?
I've tried searching for this but it's pretty difficult to put into words.
Basically, our site will run fine for most users without any issues. Sometimes though, those of us who …
0
votes
2answers
31 views
UILabel showing very slow
For an application I'm programming I need to create a list without a TableViewController, I am adding views to a UIScrollView by addSubview:
The UIImageViews show up the instance …
0
votes
1answer
39 views
How come the edit post page takes so long to load?
I just setup a new wordpress blog at home, and no other pages takes forever...I am trying to just add an image to the post, but it is just taking forever...none of the other pages …
4
votes
6answers
175 views
Why is PLSQL slower than SQL*Plus
I have several Oracle queries that perform well when run through SQL*PLUS. However when they are executed as a part of a PL/SQL package, they take MUCH longer.
Our DBA has watche …
0
votes
0answers
5 views
Visual Studio SQL editor in DB projects is extremely slow
Our solution has a DB project for versioning DB structure. Whenever I open any SQL files in it, it is an absolute pain to edit it. Every keystroke takes literally 2 seconds to be e …
0
votes
1answer
40 views
Problems with java app and remote dbase
Hi. I'm having trouble with my java app on the database side of things. It uses connectorJ to communicate with a mysql dbase and works perfectly fine locally. When communicating w …
0
votes
13answers
310 views
Why Interpreted Languages Are Slow?
I was reading about the pros and cons of interpreted languages, and one of the most common cons is the slowness, but why is the interpreted languages programs slow?
0
votes
1answer
57 views
how do I speed up netbeans’ localhost?
I've just switched from radrails to netbeans. So far, so good. But I have noticed that radrails used to serve up pages a lot faster on localhost. I've left the server on glassfish, …
2
votes
11answers
281 views
Purposefully Slow MATLAB Function?
I want to write a really, really, slow program for MATLAB. I'm talking like, O(2^n) or worse. It has to finish, and it has to be deterministically slow, so no "if rand() = 123,123, …
