Tagged Questions
0
votes
3answers
43 views
Magento 1.7.0.2 site loading takes over a minute to load
I'm running Magento 1.7.0.2 on Media Temple GS. I have a maybe 3 products max in the site, no plugins, etc. All of the sudden today, it take well over a minute to load the page, several minutes to ...
1
vote
4answers
137 views
MongoDb performance slow even using index
We are trying to build a notification application for our users with mongo. we created 1 mongodb on 10GB RAM, 150GB SAS HDD 15K RPM, 4 Core 2.9GHZ xeon intel XEN VM.
DB schema :-
{
"_id" : ...
1
vote
4answers
165 views
How can I optimize these nested loops?
Can anyone optimize this code block? It is working but running very slow.
maxsat = 0
possiblevotes = []
for i in range(1,int(numcats)+1):
for j in range(1,int(numdogs)+1):
...
0
votes
0answers
30 views
Windows store apps tapped event is very slow
After running some performance tests on my new windows store app, I realized that all tapped-events are much slower than the pressed-events.
I have no idea why, but the problem is: I need it.
I ...
0
votes
0answers
53 views
EF CF slow on generating insert statements
I have project that pull data from a service (return xml) which deserialize into objects/entities.
I'm using EF CF and testing is working fine until it come to big chuck of data, not too big, only ...
0
votes
2answers
993 views
UICollectionView poor scrolling performance with simple UICollectionViewCell
I'm using UICollectionView to show grid based View in iPad. I have only 200 (20rows x 10 columns) cells at a time on screen, each cell contain one UILabel only. It starts to get slower on scrolling ...
0
votes
3answers
80 views
MySql Query Super Slow
I have the following query which is super slow (taking 4-5 seconds just for the results. I was wondering if anyone could see anything that I could do differently with this query to speed it up?
...
0
votes
0answers
39 views
Iphone: app action slow first time then fast
I have noticed that every single user interface action which is done for first time is slow. The very same action the next time is fast.
It deals with the sdk embedded functionality such as the ...
0
votes
1answer
75 views
using Python for a solution cannot be handled in JAVA because of slow execution [closed]
I have 3 millions line of data each has 30 features - it is hard to include all in memory for my computer and slow to process it with learning algorithm - . I want to write a little code that makes ...
1
vote
0answers
192 views
ABAddressBook poor performance on since iOS6
i have a App that imports round about 12000 numbers in 3 contacts and 1 group. Since iOS6 this process needs 5 times longer than before with iOS 5.1. In the simulator it isn't that slow than on a ...
0
votes
0answers
63 views
Advice: Tableviews loading images from documents
I have implemented 2 methods using Assetslibrary (which worked perfectly well) for loading images from the photoalbum and another approach which would load thumbnails of images from the documents ...
0
votes
2answers
315 views
Android ORMlite performance problems with queryForAll()
Well, like the title says, i got some performance problems while executing queryForAll on a DAO object with ormLite (with android, if it should matter).
The only thing i am actually doing is to ...
0
votes
0answers
21 views
Why IEnumerable<Contacts> speed degrades rapidly?
Solved: I just converted to List, performed the same operation on the List, and converted the List back to IEnumerable. It's fast now.
Here are the 4 lines in issue:
...
3
votes
3answers
436 views
Spring DAO - first query with JdbcTemplate takes much longer time
In my application I use Spring MVC with DAO pattern to access MSSql database with JdbcTemplate. Everything is working fine but I have noticed that first query takes a bit longer then next queries in ...
2
votes
2answers
155 views
URLs matching regexp very slow on some strings
Here is my regexp for finding URLs in some string (i need the group for the domain because further actions are based on the domain) and i noticed for some strings 'fffffffff' in this example it's very ...
1
vote
2answers
874 views
How to pinpoint what's slowing down Android app
I'm new to Android (and Java for that matter) development. I thought I was doing well - I have an app that reads in XML files, parses into a SQLite database, pulls from the database to populate ...
0
votes
1answer
289 views
Timer fired ad nauseam (native v8natives.js:1582)
I have a website that loads very slow. Today I have done a test with the Timeline included in the Chrome Tools for Developers and I have seen that during about 9 seconds there is a Timer firing in a ...
1
vote
2answers
618 views
Wordpress 3.3 dog slow when logged in
EDIT3
Boulevard theme was the culprit indeed. An update notifier service runs on every page request for logged in user (one would hope only for admins), which, for some reason takes @10 seconds of ...
3
votes
1answer
853 views
JSF Performance tuning
I use Mojara 2.0.3 with PrimeFaces 2.2.
I've already read lots of posts in this topic and found some pretty suggestion (such as don't use db calls in getters and so on) and used them, but our app ...
2
votes
1answer
98 views
Why is this simple update running so slowly?
I'm running what I thought was a fairly straight forward update on a fairly large table. I am trying to find out why this simple update is running so slowly. It took about 5 hours to complete.
master ...
0
votes
2answers
321 views
Ruby on Rails runs extremely slowly (5-10 minutes per command)
I have begun teaching myself Rails with http://ruby.railstutorial.org. I have set up an environment using Railsdownloader, with gitbash and vim in windows
It seems to me the commands react too ...
0
votes
1answer
846 views
php curl - long redirect time in curl_getinfo()
The code works, but it takes up to 10 seconds to load the page. Then I add curl_getinfo(), and discovered the redirect time has used 90% of the total time....
<?php
//
$url = ...
-1
votes
1answer
128 views
nhibernate return result size cause the performace diffrence why?
int pageSize = 36;
int pageIndex=1;
IMultiQuery multiQuery = _session.CreateMultiQuery();
multiQuery
.Add(session.CreateQuery("select * from Smart_Products where " + ...
0
votes
2answers
264 views
Code runs extremely slowly inside Google App Engine
I'm doing some experiments with doing work (in this case, a MD5 brute-forcer) on Google App Engine using the MapReduce framework.
I'm having an issue where the code runs extremely slowly inside GAE, ...
0
votes
1answer
423 views
Visual studio 2008 IDE gets slow
Well, this happens only for the first time. But it does really screw me out.
I open my solution file in VS 2008 (which has 18 projects), open up a class file, and start typing the code in it. The ...
0
votes
1answer
1k views
sendmail running slow on centos
So I am trying to send emails out of one of my boxes running centos, and I have sendmail installed and turned on, but it'll take literally minutes for an email to send. Aren't emails supposed to be ...
5
votes
2answers
632 views
Visual Studio 2010 Premium SP1 Very Annoying Typing Lag
I've recently noticed that after my projects grow a certain size I end up getting a lot of VERY annoying typing lag in VS2010. It affects every language and every word I type ends up taking around 5 ...
1
vote
2answers
902 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 ...
-2
votes
2answers
55 views
Win from application gets slow
I have built an application using Visual Studio .NET and it works fine. After the application is used for more than 2-3 hours it starts to get slow and I don't know why. I have used GC.Collect(); to ...
-3
votes
1answer
149 views
document.ready() function slowing my UIs performance
I have a UI page in my application which is taking to much time to load .
In the HTML source , as you can see, I have a series of .click() jquery event handlers in the document.ready() function as ...
3
votes
3answers
890 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, ...
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 ...
0
votes
5answers
60 views
Quickiest way to determine why a site is sluggish?
I just picked up a client who's Wordpress web site takes anywhere between 8 to 22 seconds to START loading. The loading delay also occurs when using the Wordpress backend so I'd like to fix the ...
1
vote
0answers
213 views
NHibernate sluggish performance in FindAll(criteria) query
29I have a very simple mapping file (se below) and a simple class.
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="Domain"
...
24
votes
11answers
7k views
Visual Studio 2010 very slow, unusable
I've searched for this topic but can't seem to find posts that relate exactly to what I am experiencing.
I have a Visual Studio solution that I need to work on, its fairly large and contains 16 ...
5
votes
8answers
2k views
How to speed up Visual Studio 2008? Add more resources?
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 Edition
It takes me a long time ...


