The slowness tag has no wiki summary.
5
votes
1answer
540 views
Rails 3 Cli executes commands really slow?
somebody knows why my rails 3.0.7 cli is so slow? when i run rails s or rails g it takes like 5sec till he actually executes the command...
any advice? thanks
4
votes
3answers
742 views
if basic, sample GWT app takes 30sec to load in browser, is that normal? will real apps take 2 mins?
I have a decent machine capable of running 64 bit Windows 7. So how come any time I stop a small sample GWT app in "development mode", edit it and restart it it takes 30 sec to become responsive in ...
7
votes
5answers
3k views
Console.WriteLine slow
I run through millions of records and sometimes I have to debug using Console.WriteLine to see what is going on.
However, Console.WriteLine is very slow, considerably slower than writing to a file.
...
6
votes
1answer
2k views
AES decryption on Android too slow to be usable. Will NDK be faster? Other ideas?
I've implemented AES/CTR on Android using the built-in Cipher class. Decryption appears to be far too slow for my purposes, with a 128KB block taking approximately 6 seconds to decrypt on the ...
7
votes
4answers
2k views
Oracle 10g small Blob or Clob not being stored inline?
According to the documents I've read, the default storage for a CLOB or BLOB is inline, which means that if it is less than approx 4k in size then it will be held in the table.
But when I test this ...
2
votes
1answer
810 views
Changing Tabs is Slow/Laggy - Using Fragments
I have an Activity that uses tabs, and the tabs switch Fragments. The problem is that the Fragment take a few seconds to load when being created, thus switching tabs has a delay of about 1 or 2 ...
3
votes
3answers
905 views
Eclipse PyDev completion hangs (yet again)
I'm using PyDev in Eclipse as my Python editor. It's fine in terms of feature set. Everything works fine except for one very annoying thing:
Code completion itself works fast. When I press Alt+Space, ...
4
votes
1answer
1k views
sql like query slow if using declare parameter but fast if not
SQL 2008:
This is slow (takes 1 1/2 minutes):
declare @p1 varchar(50)
set @p1 = '976j%'
select * from invsearch_query where comparepnfwd like @p1
This takes less than a second:
select * from ...
1
vote
2answers
915 views
Slow processing a for loop that utilizes findstr
I've got a somewhat weird case, where a for-loop is incredibly slow when I use findstr as the string for DO.
Its worth mentioning that the file (old-file.xml) that I'm processing contains about 200 ...
0
votes
1answer
141 views
finding out why a webapp is slow when hosted
I have a django web app that uses postgres db.It allows users to login and make some posts which get saved to db and later on the user can list how many posts he made on a particular day etc and list ...
0
votes
2answers
355 views
How to handle javascript on page with thousands of checkboxes in IE6
I am having problems with code written in ASP.NET with some javascript, doing a postback to the server for changes made to a grid of approximately 8,000 checkboxes. The this is, while I was testing ...