Hi,
I'm using NHibernate, in my application there is a time where I need
to perform an insert on the Database.
This insert carries two images, and some other information, the images are about 25KB each, they are stored as blobs on the Database.
I perform this operation at a rate of 3 per second, during a normal day of operation the table to where this information goes will reach something like 1.2GB.
During 4 hours we will need to maintain this rate, but it might go up to 6 of this operations per second. On the server we have other processes runing that are performing queries, and also deletes from the table. We have a lot of pressure on this table. This is the place on this application where the performance is very critical.
I saw that on average the Insert is taking something like 50ms, but sometimes it takes longer, much longer, sometimes around 100ms.
I need more control about this timming.
Any ideas about how can I improve this?
I know that on this part of my application I need to be very fast.
Thanks for any help.
Regards
Luis
|