Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
7answers
10k views

What is NoSQL, how does it work, and what benefits does it provide?

I've been hearing things about NoSQL and that it may eventually become the replacement for SQL DB storage methods due to the fact that DB interaction is often a bottle neck for speed on the web. So I ...
12
votes
11answers
290 views

Minimising reading from and writing to disk in Python for a memory-heavy operation

Background I am working on a fairly computationally intensive project for a computational linguistics project, but the problem I have is quite general and hence I expect that a solution would be ...
8
votes
16answers
2k views

Top 10 SQL Server performance bottlenecks

What is the most common performance bottleneck that is not caused by the database structure?
8
votes
3answers
15k views

Difference between frontend, backend, and middleware in web development

I was wondering if anyone can compare/contrast the differences between frontend, backend, and middleware ("middle-end"?) succinctly. Are there cases where they overlap? Are there cases where they ...
6
votes
5answers
166 views

optimizing `std::vector operator []` (vector access) when it becomes a bottleneck

gprof says that my high computing app spends 53% of its time inside std::vector <...> operator [] (unsigned long), 32% of which goes to one heavily used vector. Worse, I suspect that my parallel ...
5
votes
10answers
2k views

MPI or Sockets

I'm working on a loosely coupled cluster for some data processing. The network code and processing code is in place, but we are evaluating different methodologies in our approach. Right now, as we ...
4
votes
6answers
226 views

C++ super fast thread-safe rand function

void NetClass::Modulate(vector <synapse> & synapses ) { int size = synapses.size(); int split = 200 * 0.5; for(int w=0; w < size; w++) if(synapses[w].active) ...
4
votes
3answers
130 views

Parallel computing memory access bottleneck

The following algorithm is run iteratively in my program. running it, without the two lines indicated below, takes 1.5X as long as without. That is very surprising to me as it is. Worse, however, is ...
4
votes
5answers
393 views

Finding bottlenecks in application

I have an .Net app and it runs fast through about 2000 records that starts to go really slow. I'm trying to find the bottleneck and I was wondering if there is a good, possibly free but it doesn't ...
4
votes
3answers
800 views

Server virtualization: how to avoid, locate and fix bottlenecks?

Server virtualization is a big thing these days, so I'm tasked at work to install some of our software on a virtualized server and see what happens. Long story short: a rsync transfer promptly brings ...
3
votes
5answers
148 views

Is Logging using FileHandler a bottleneck?

I am considering logging business events in a J2EE web application by using Java logging and FileHandler. I am wondering whether that could cause a performance bottleneck, since many log records will ...
3
votes
1answer
177 views

Multiple disk read/write operations can cause bottleneck?

I've been doing a lot of work where I concurrently access one file from 30+ processes (via 4 nodes mounted on NFS) and was wondering if, besides the bandwith bottleneck, there is an advantage to ...
3
votes
6answers
2k views

Terrible DotNetNuke performance

I'm involved with a project using DotNetNuke version 05.01.04 Community Edition. We are building our new Intranet using it, but performance is terrible. We have five people adding pages and content ...
2
votes
4answers
83 views

What is the bottleneck in this primes related predicate?

So here it is : I'm trying to calculate the sum of all primes below two millions (for this problem), but my program is very slow. I do know that the algorithm in itself is terribly bad and a ...
2
votes
2answers
62 views

How do I find why a python scripts runs in significantly different running times on different machines?

The Facts: I am working on a NoteBook with Intel Core 2 Duo 2,26 GHz and 4 Gigabyte of Ram. It has a Apache Server and a MySQL Server running. My Server (I did lshw | less) shows a 64 Bit CPU with ...
2
votes
2answers
197 views

Clarify: Processor operates at 800 Mhz and 200Mhz DDR RAM

I have an evaluation kit which has an implementation of ARM Cortex-A8 core. The processsor data sheet states that it has a ARM Cortex A8™ core, which operates at speeds as high as 800MHz and Up to ...
2
votes
2answers
621 views

How to mitigate host + device memory tranfer bottlenecks in OpenCL/CUDA

If my algorithm is bottlenecked by host to device and device to host memory transfers, is the only solution a different or revised algorithm?
2
votes
2answers
430 views

Java heap bottleneck - how to identify the cause?

I have a J2EE project running on JBoss, with a maximum heap size of 2048m, which is giving strange results under load testing. I've benchmarked the heap and cpu usage and received the following ...
2
votes
3answers
727 views

DataView.Sort is a performance bottleneck

I have a performance bottleneck on a DataView.Sort. The code is below. /// <summary> /// Filters the data table and returns a new data table with only the filtered rows. /// ...
1
vote
1answer
74 views

Best way to stress test and finding bottlenecks in drupal site?

I have a Drupal site with a lot of calculations and database requests on each page load (running on an Amazon EC2 server). I am curious how my site would hold up if it became popular or in some other ...
1
vote
2answers
137 views

OpenCV's cascade classifier not utilizing full power of the CPU

I'm using OpenCV's cascade classifier for detection, however my CPU utilization never goes above 50% yet the application runs only at ~8 FPS so there should be a lot more room for improvement. I've ...
1
vote
1answer
145 views

Win32 event loop appearing to be the program bottleneck

I am making a game in Python with Pyglet. I have just finished the display part, and getting issues with speed. Like a good person, I profiled, and got the following: (uninteresting bits excluded; ...
1
vote
1answer
252 views

Are there any performance bottle necks in template inheritance?

Are there any performance bottle necks in template inheritance
1
vote
2answers
326 views

How to benchmark and optimize a really database-intensive Rails action?

There is an action in the admin section of a client's site, say Admin::Analytics (that I did not build but have to maintain) that compiles site usage analytics by performing a couple dozen, rather ...
1
vote
2answers
162 views

How can I find the bottleneck in a multithreaded service?

I am trying to find the bottleneck of a multithreaded service. I used ab with -c 100 and observed TPS around 350. The question is the peak CPU usage is 70%, memory is 10%. So it looks like it's not ...
1
vote
1answer
110 views

Concurrent Generation of Sequential Keys

I'm working on a project which generates a very large number of sequential text strings, in a very tight loop. My application makes heavy use of SIMD instruction set extensions like SSE and MMX, in ...
1
vote
7answers
447 views

Bottleneck of web applications?

This question pertains to Ruby on Rails and PHP. When looking for a VPS host for a web application (haven't decided which of the 2 languages to write it in yet), what should I take into consideration ...
0
votes
1answer
36 views

Speeding up a Cellular Automata

Is it possible, with some sort of algorithm or something like that, to speed up a cellular automata? I'm using a Conway's Game of Life implementation made in XNA and it works perfectly, but the ...
0
votes
1answer
19 views

Would it be advisable to have the routes.rb look through directories when creating routes?

I have a controller called 'reports'. In it, I want to display pre-made reports through partials. As it stands, I don't want to make a fully-fledged sql query/report generator so I figure the ...
0
votes
3answers
95 views

Are there ways to overcome graphic APIs CPU bound bottlenecks on PC?

Recently, I have been spending a lot of my time researching the topic of GPUs, and have came across several articles talking about how PC games are having a hard time staying ahead of the curve ...
0
votes
1answer
122 views

Where is the bottleneck in mjpeg broadcasting?

I'm streaming mjpeg with PHP just like this <?php //example /cli/watch.php?i=0&j=200 function get_one_jpeg($i) { $path = "img"; //$f = fopen("$path/$i.jpg", "rb"); return ...
0
votes
2answers
40 views

is writing your own parser worth the extra runtime it causes?

I am doing work involving a lot of DOM manipulation. I wrote a function to more efficiently change common styles on objects using "hotkeys." It simply interprets this: styles = ...
0
votes
2answers
192 views

Benchmark application for Qt?

I would like to do some profiling and benchmarking of Qt. The purpose of the profiling and benchmarking is to get the better understanding of Qt, and see what functions take most of the time, where ...
0
votes
2answers
76 views

Bottlenecks slowing some part of my script

I have a script that perform the following steps A user logs in, adds an SMS message and specifies recipients. That information is added to "queued message table"; Some process sends the messages ...
0
votes
2answers
61 views

Numeric GUI bottleneck

I've made a GUI to set up and start a numerical integrator using PyQT4, Wing, QT, and Python 2.6.6, on my Mac. The thing is, when I run the integrator form the GUI, it takes very many times longer ...
0
votes
0answers
42 views

Structuring service calls to avoid bottlenecks

I am working on a project and we are debating the way to get the best performance. We are working with an multitier architecture. Basically we have a server that can access services that are given to ...
0
votes
2answers
353 views

What does “bottleneck” mean in terms of bandwidth?

What is a "bottleneck", particularly when used in terms of network bandwidth?
0
votes
2answers
191 views

How can I cache private data in a webfarm for ASP MVC

Hi I am making a member based web app in ASP MVC3 and I am trying to plan ahead, at first our user base will not be huge, but as with any software the potential for a sudden volume spike is always a ...
0
votes
2answers
135 views

Bottleneck from comparing strings

This is a follow up question to Char* vs String Speed in C++. I have declared the following variables: std::vector<std::string> siteNames_; std::vector<unsigned int> ids_; ...
0
votes
2answers
150 views

Asp.net application bottleneck identification: any suggestion?

we are struggling to find out what could be the asp.net application performance decrease when we pass from our staging server to our production server and we would like to hear from you to help us ...
0
votes
1answer
94 views

Localhost bottleneck with python sockets

I'm sending a very large string from one application to another on localhost using sockets in python. Small strings move instantly, but large strings seem to take a while longer (I say large, but I'm ...
0
votes
3answers
200 views

Monitoring application to monitor a Java desktop application performance

I have a Java desktop application I wrote, and I would like a recommendation about a monitoring application that can spot bottlenecks in the code and real time memory consumptions. As I was ...
0
votes
1answer
202 views

Linux, monitor read rates of files

I have a custom application which has a bunch of files open. I can see the file handles open by a process using "lsof" and I can see the files being accessed using "watch -d 'ls -alh'" and watching ...
0
votes
6answers
795 views

(Firebird) SQL: 100x constraints in WHERE clause makes query extremely slow

I'm using Firebird and created a table, called EVENTS. The columns are: id (INT) | name (VARCHAR) | category (INT) | website (VARCHAR) | lat (DOUBLE) | lon (DOUBLE) Now a user wants to search for ...
0
votes
1answer
312 views

Need ways to speed up PHP methods

I ended up creating my own HTML class, mainly to keep all our output consistent. The code is below. <?php /** * A class to generate html tags * @author Glen Solsberry */ class HTML { ...
0
votes
3answers
185 views

Wheres the bottleneck?

I have two test computers networked together. One has a gigabit ethernet, the other a 10 megabit. Theoretically, data trasferred between the two should reach about 1megabytes p/s. Now im using a ...