Hello. I have a string big_html and I want to add it to some div. I have observed a performance difference in the following:
$('#some-div').append( big_html );
// takes about 100 ms
//create it first
var append_objs = $(big_html);
$('#some-div').append( append_objs );
//takes about 150 ms
Does anyone know why this happens ? Thank you...
I'm using the following codes to copy D3D surface back to system memory, but the performance is bad when call LockRect operation, it spends lot of time of this function. Is there a way to improve it? Thanks in advance.
Below is sample codes.
D3DDev->GetRenderTargetData(renderTarget, offscreenSurface);
// Lock the surface to read pixel...
I have a web application where the web server and SQL Server 2008 database sit on different boxes in the same server farm.
If I take a monolithic stored procedure and break it up into several smaller stored procs, thus making the client code responsible for calls to multiple stored procedures instead of just one, and I going to notice ...
My app has a lot of different lookup values, these values don't ever change, e.g. US States. Rather than putting them into database tables, I'd like to use enums.
But, I do realize doing it this way involves having a few enums and a lot of casting from "int" and "string" to and from my enums.
Alternative, I see someone mentioned using...
Hi,
I'm using LINQ to XML to search the XML below (small section of final document) initially on the Country name attibute and was wondering if there would be any performance benefit in creating the name as a child element rather than attribute
<Countries>
<Country name="United Kingdom">
<Grades>
<Grade>PA</Grad...
To my understanding a Thread.Sleep(0) force a context switch on the OS.
I wanted to check what was the maximum amount of time that could pass in an application before to receive some CPU time.
So I built an application that does Thread.Sleep(0) in a while loop (c#) and calculate the time that pass between each call.
When this applicat...
I heard a lot of people saying that java is slow comparing .net, like they had servers with application on java with jboss hibernate and other stuff and it was really slow, but when they moved to .net all the performance issues disappeared. Is java really much slower ?
isthere any benchmarks made ?
...
Hello!
Does anyone know how to speed up boost::numeric::ublas::vector?
I am using typedef ublas::vector<float, ublas::bounded_array<float, 3> > MYVECTOR3 and compare it's speed to D3DXVECTOR3 on plain operations.
The test look the following way:
#include <d3dx9.h>
#pragma comment(lib, "d3dx9.lib")
static const size_t kRuns = static_...
Correct me if im wrong but doing a foreaver an IEnumerable<T> creates garbage no matter what T is. But I'm wondering if you have a List<T> where T is Entity. Then say there is a derived class in the list like Entity2D. Will it have to create a new enumerator for each derived class? Therefore creating garbage?
Also does having an interf...
If I have a compiled entities query via CompiledQuery.Compile and I then tack on another .Where() clause or .OrderBy() clause, do these addition clauses force a full recompile, a partial recompile, or no recompile?
...
Hi,
I have used KD-tree(libkdtree++) to store a multi-dimensional data set, and the requirements here is this data set can support top-k/range queries on different dimensions. For example, a KDTree<3, Point> tree: to find the top 100 points whose have highest Point[1](y axis) values.
From the implementation of libkdtree++, what's sim...
I am trying to use gson to do my object mapping on the android emulator.
It has been ridiculously slow when processing json data around 208 kb. I do not have any hierarchies in my json.
After the object mapping is done, i can see it that gson created around 500 records.
It is taking it over 3 minutes on the android emulator to map the...
My home page is largely the same for all users, which makes it a candidate for page caching. however, there are a couple of things that are user specific. For example, there is a nav item that is only shown for logged in users and there is a link like logout, my profile etc, generated for specific users.
Do I have to use fragment cachi...
Hi,
What are the performance differences between the hql and criteriaApi and QueryOver? Are there any situations where one is faster or slower than the other?
Edit: I extended the question with QueryOver.
=============================================
Well, I am not sure which response to mark as answer so I will mark posts with most ...
I have some custom table view cells that takes a while to draw, so the first time you scroll it's not very smooth. After the first scroll, all the views are cached and the scrolling is very smooth.
So what I'm wondering is if I could draw all the cells and cache them before the table view is shown and how I would do that. Would there be...
I read somewhere that having public properties is preferable to having public members in a class.
Is this only because of abstaraction and modularity? Are there any other over-riding reasons?
The property accesses are conerted into function calls by the compiler. For properties without a backup store (e.g. public string UserName { get...
I have some pojos, which are mapped to a tables in database.
When I deploy my code into performance tuning environment, I receive bunch of org.hibernate.MappingException due to $performasure_j2eeInfo is added to them by PerformaSure tool.
Is there a way, I can configure my hibernate context file, so this field mapping will ignore mapp...
Say we have three dependent select dropdowns (selecting parent asynchronously populates the child via a database query):
DD1: [People of this world]
DD2: [Hair Strands]
DD3: [Keratin Molecules]
Ok, our options' lists won't be as large as what the names here imply, but each dropdown is going to house about 1 million option i...
I am running performance profile for a C# application on a virtual machine.
The results show huge load of "JIT Compiler". When I dig further in, it shows something called "Class Loader" as the only method getting called by JIT compiler.
What do I do to bring "JIT compiler" load down?
...
So here I am looking at this huge oracle 10g table. I looked at its indexes and see that ALL of the columns are under one unique index. Does this provide actually provide any performance benefits?
...