4
votes
8answers
79 views
Are these tables too big for SQL Server or Oracle
Hey all,
I'm not much of a database guru so I would like some advice.
Background
We have 4 tables that are currently stored in Sybase IQ. We don't currently have any choice o …
0
votes
2answers
14 views
Performance considerations when designing ASP.NET application building on WebServices
Hi,
I am considering rebuilding my ASP.NET portal using ASP.NET MVC. I use the same portal solution at two different web sites, and I would like to have a single place og editing …
0
votes
0answers
21 views
What is a “Sync Block” and tips for reducing the count
We have a Windows Forms application that uses a (third party) ActiveX control, and are noticing in the .NET performance objects under ".NET CLR Memory" that the number of "Sink Blo …
0
votes
2answers
27 views
LINQ vs datasets - performance hit?
I am refactoring an existing VB.NET application to use Linq. I've been able to successfully get it to work, but it takes ages (over a minute) on the client machine!
They have lot …
1
vote
2answers
33 views
iPhone: Quartz2d vs. OpenGL ES
OK, I'm still brand new to iPhone development. I have a free game on the app store, Winner Pong, but it's just a Pong clone (who would've guessed) that uses the standard UIImageVie …
0
votes
1answer
31 views
How to optimize activemq
I'm using ActiveMQ on a simulation of overloading servers in Java. And mainly it goes ok, but when I get over 600 requests the thing just go WTF!
I think the bottleneck is my Mas …
-1
votes
1answer
31 views
What’s the best strategy to invalidate ORM cache?
We have our ORM pretty nicely coupled with cache, so all our object gets are cached. Currently we invalidate our objects before and after our insert/update/delete of our object. Wh …
0
votes
0answers
20 views
Has anyone done a performance analysis of boost::asio ?
I require socket-like local IPC. I used named pipes and overlapped IO on windows and I want to rewrite the application to boost::ASIO so that it can use UNIX domain sockets as well …
0
votes
0answers
20 views
/proc/sys/fs/aio-nr is never higher than 1024 (AIO on linux)
I'm trying to use async io on linux. As far as i know there're 3 options:
kernel calls (io_submit and friends)
libRT - uses threads in user space
libRTKAIO - wrapper of kernel c …
1
vote
1answer
23 views
NHibernate calling PostgresSQL’s SELECT DISTINCT ON ()
Hello,
Before asking this question I have googled for some time, but could not find any relevant information on this topic.
My problem is simple:
I have NHibernate criteria and …
0
votes
3answers
58 views
Implicit type conversions in expressions int to double
I've been trying to reduce implicit type conversions when I use named constants in my code. For example rather than using
const double foo = 5;
I would use
const double foo = 5 …
3
votes
5answers
61 views
Drawing incrementally in a UIView (iPhone)
As far as I have understood so far, every time I draw something in the drawRect: of a UIView, the whole context is erased and then redrawn.
So I have to do something like this to …
0
votes
1answer
23 views
What type of java cache should be used in case data changes frequently?
I have a JSP which shows data by many aggregation types. E.g. By market, by category, by server type, etc.. What I have is the data by publisher and time. Publisher is the most gra …
5
votes
4answers
98 views
Why does multithreaded file transfer improve performance?
RichCopy, a better-than-robocopy-with-GUI tool from Microsoft, seems to be the current tool of choice for copying files. One of it's main features, hightlighted in the TechNet arti …
0
votes
4answers
139 views
C - the limits of speed of the Desktop-CPUs if program is build using GCC with all optimization flags?
We are planning to port a big part of our Digital Signal Processing routines from hardware-specific chips to the common desktop CPU architecture like Quad-Core or so. I am trying t …
