active questions tagged optimization - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T15:03:46Zhttp://stackoverflow.com/feeds/tag/optimizationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1840286/turning-off-an-index-in-oracle0Turning off an index in OracleEli Courtwright2009-12-03T14:42:02Z2009-12-06T14:36:10Z
<p>To optimize SELECT queries, I run them both with and without an index and measure the difference. I run a bunch of different similar queries and try to select different data to make sure that caching doesn't throw off the results. However, on very large tables, indexes take a really long time to create, and I have several different ideas about what indexes would be appropriate.</p>
<p>Is it possible in Oracle (or any other database for that matter) to perform a query but tell the database to not use a certain index when performing the query? Or just turn off the index entirely, but be able to easily switch it back on without having to re-index the entire table? This would make it much easier to test, since I can create all the indexes I'm thinking about all at once, then try my queries using different ones.</p>
<p>Alternatively, is there any better way to go about optimizing queries on large tables and know which indexes would be best to create?</p>
http://stackoverflow.com/questions/1849269/mysql-table-with-text-column0MySQL Table with TEXT columnluiscubal2009-12-04T19:52:46Z2009-12-06T10:27:30Z
<p>Hello. I've been working on a database and I have to deal with a TEXT field.</p>
<p>Now, I believe I've seen some place mentioning it would be best to isolate the TEXT column from the rest of the table(putting it in a table of its own).</p>
<p>However, now I can't find this reference anywhere and since it was quite a while ago, I'm starting to think that maybe I misinterpreted this information.</p>
<p>Some research revealed <a href="http://forge.mysql.com/wiki/Top10SQLPerformanceTips" rel="nofollow">this</a>, suggesting that</p>
<blockquote>
<p>Separate text/blobs from metadata, don't put text/blobs in results if you don't need them.</p>
</blockquote>
<p>However, I am not familiar with the definition of "metadata" being used here.</p>
<p>So I wonder if there are any relevant advantages in putting a TEXT column in a table of its own. What are the potential problems of having it with the rest of the fields? And potential problems of keeping it in a separated table?</p>
<p>This table(without the TEXT field) is supposed to be searched(SELECTed) rather frequently. Is "premature optimization considered evil" important here? (If there really is a penalty in TEXT columns, <em>how</em> relevant is it, considering it is fairly easy to change this later if needed).</p>
<p>Besides, are there any good links on this topic? (Perhaps stackoverflow questions&answers? I've tried to search this topic but I only found TEXT vs VARCHAR discussions)</p>
http://stackoverflow.com/questions/1854485/performance-of-one-huge-unix-directory-vs-a-directory-tree0Performance of one huge unix directory VS a directory tree?orz2009-12-06T05:56:19Z2009-12-06T09:18:04Z
<p>My PHP project will use thousands of pictures and each needs only a single number for it's storage name.</p>
<p>My initial idea was to put all of the pictures in a single directory and name the files "0.jpg", "1.jpg", "2.jpg", and all the way to "4294967295.jpg" .</p>
<p>Would it be better performance-wise to create a directory tree structure and name the files something like "429 / 496 / 7295.jpg"?</p>
<p>If the answer is yes, then the follow up question would be: what is the optimal amount of subdirs or files per level of depth? And what effect does the chosen filesystem have on this?</p>
<p>Each file will have a corresponding MySQL entry with an UNSIGNED LONGINT id-number.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1854356/implementation-of-comments-is-there-any-best-practice-for-this1Implementation of Comments, Is there any best practice for this?atif0892009-12-06T04:26:55Z2009-12-06T04:46:26Z
<p>Well I need to implement the comments feature on a custom coded social networking website. The comments need to be implemented on various pages like videos, pictures, albums etc etc similar to facebook.</p>
<p>What would be the best practice for implementing this ?</p>
<p>Making one global comments table with fields like this, and grab comments based on their comment type on required page.</p>
<pre><code>commentid int(10)
userid int(10)
comment_type ENUM('video','picture')
comment varchat(200)
parent int(10)
</code></pre>
<p>or making separate tables for each comment?</p>
http://stackoverflow.com/questions/1854248/wpf-sluggish-rendering-animation-performance0WPF sluggish rendering/animation performance?unknown (yahoo)2009-12-06T03:25:55Z2009-12-06T03:25:55Z
<p>I've been trying to animate around 1000 lines which are all added to a Canvas, and it is extremely slow to the extend that animation is not feasible at all. At first I thought it was probably because of all the calculations, but then I tried a very simple experiment.
I generated around 1000 random lines and I tried to move them to new random coordinations using PointAnimations. I've basically ran this program on every combination of OS/Hardware that I could find and I can't even get more than 4 frames a second.</p>
<p>The source (and a bit more info) can be found at <a href="http://ali.shiravi.com/index.php/wpf-sluggish-rendering-performance/" rel="nofollow">http://ali.shiravi.com/index.php/wpf-sluggish-rendering-performance/</a></p>
<p>Does anyone have any solutions to this? Is this really too much to ask from WPF?</p>
http://stackoverflow.com/questions/241142/c-net-how-to-check-if-were-running-on-battery13C# .NET: How to check if we're running on battery?Ian Boyd2008-10-27T19:33:11Z2009-12-05T23:26:12Z
<p>i want to be a good developer citizen, <a href="http://blogs.msdn.com/oldnewthing/archive/2005/08/22/454487.aspx" rel="nofollow">pay my taxes</a>, and disable things if we're running over Remote Desktop, or running on battery.</p>
<p>If we're running over remote desktop (or equivalently in a Terminal server session), we must disable animations and double-buffering. You can check this with:</p>
<pre><code>/// <summary>
/// Indicates if we're running in a remote desktop session.
/// If we are, then you MUST disable animations and double buffering i.e. Pay your taxes!
///
/// </summary>
/// <returns></returns>
public static Boolean IsRemoteSession
{
//This is just a friendly wrapper around the built-in way
get
{
return System.Windows.Forms.SystemInformation.TerminalServerSession;
}
}
</code></pre>
<p>Now i need to find out if the user is running on battery power. If they are, i don't want to blow through their battery. i want to do things such as</p>
<ul>
<li>disable animations</li>
<li>disable background spell-checking</li>
<li>disable background printing</li>
<li>turn off gradients </li>
<li>use <code>graphics.SmoothingMode = SmoothingMode.HighSpeed;</code> </li>
<li>use <code>graphics.InterpolationMode = InterpolationMode.Low;</code></li>
<li>use <code>graphics.CompositingQuality = CompositingQuality.HighSpeed;</code></li>
<li>minimize hard drive access - to avoid spin up</li>
<li>minimize network access - to save WiFi power</li>
</ul>
<p>Is there a managed way to see if the machine is <strong>currently</strong> running on battery?</p>
<p><strong>References</strong></p>
<p><a href="http://blogs.msdn.com/oldnewthing/archive/2005/08/22/454487.aspx" rel="nofollow">How do you convince developers to pay their "taxes"?</a></p>
<p><a href="http://blogs.msdn.com/oldnewthing/archive/2006/01/03/508694.aspx" rel="nofollow">Taxes: Remote Desktop Connection and painting</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms724385%28VS.85%29.aspx" rel="nofollow">GetSystemMetrics(SM_REMOTESESSION)</a></p>
<p><hr /></p>
<p><strong>Update:</strong> The short answer is:</p>
<pre><code>Boolean isRunningOnBattery =
(System.Windows.Forms.SystemInformation.PowerStatus.PowerLineStatus ==
PowerLineStatus.Offline);
</code></pre>
http://stackoverflow.com/questions/1852738/fast-lookup-for-the-last-element-in-a-django-queryset1fast lookup for the last element in a Django QuerySet?Juanjo Conti2009-12-05T17:00:33Z2009-12-05T20:21:56Z
<p>I've a model called Valor. Valor has a Robot. I'm querying like this:</p>
<pre><code>Valor.objects.filter(robot=r).reverse()[0]
</code></pre>
<p>to get the last Valor the the r robot. Valor.objects.filter(robot=r).count() is about 200000 and getting the last items takes about 4 seconds in my PC.</p>
<p>How can I speed it up? I'm querying the wrong way?</p>
http://stackoverflow.com/questions/1750893/what-is-optimal-method-for-accessing-function-parameters-in-javascript1What is optimal method for accessing function parameters in javascript?Matthew2009-11-17T18:38:55Z2009-12-05T15:45:09Z
<p>Of these similar function definitions, what is optimal way to access arguments and why?</p>
<pre><code>function DoStuff()
{
return arguments[0] + arguments[1] + arguments[2];
}
function DoStuff(first, second, third)
{
return first + second + third;
}
</code></pre>
<p>Does one allocate less memory than the other? Is one faster to access the parameter values than the other?</p>
http://stackoverflow.com/questions/1843784/optimizing-viewstate2Optimizing ViewStateAdam2009-12-03T23:20:37Z2009-12-05T14:00:19Z
<p>Does anyone have any ideas or references they could point me to regarding optimizing the viewstate of my ASP .NET application? I don't want to turn it off all together, and the main goal of optimizing it is to speed up performance so I don't want to run an expensive function to recursively disable the viewstate for certain controls because that function would slow down the load time of the page which would defeat the purpose.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1831673/how-i-can-optimize-this-slow-query1How I can optimize this slow query?Paulo Freitas2009-12-02T09:15:05Z2009-12-05T08:43:50Z
<p>I want to know how I can optimize it, preferably without changes in tables structure.</p>
<pre><code>SELECT p.author_id member_id,
m.members_display_name member_name,
COUNT(p.pid) posts
FROM forum_topics t
STRAIGHT_JOIN forum_posts p
STRAIGHT_JOIN forum_members m
WHERE p.author_id != 0
AND p.author_id = m.member_id
AND p.new_topic = 0
AND t.forum_id = 120
AND t.tid = p.topic_id
GROUP BY p.author_id
ORDER BY posts DESC
LIMIT 1
</code></pre>
<p>Output of <code>EXPLAIN</code> is:</p>
<pre><code>-------------------------------------------------------------------------------
EXPLAIN
SELECT p.author_id member_id,
m.members_display_name member_name,
COUNT(p.pid) posts
FROM forum_topics t
STRAIGHT_JOIN forum_posts p
STRAIGHT_JOIN forum_members m
WHERE p.author_id != 0
AND p.author_id = m.member_id
AND p.new_topic = 0
AND t.forum_id = 120
AND t.tid = p.topic_id
GROUP BY p.author_id
ORDER BY posts DESC
LIMIT 1\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: t
type: ref
possible_keys: PRIMARY,forum_id,last_post
key: forum_id
key_len: 2
ref: const
rows: 28070
Extra: Using temporary; Using filesort
*************************** 2. row ***************************
id: 1
select_type: SIMPLE
table: p
type: ref
possible_keys: author_id,topic_id
key: topic_id
key_len: 4
ref: forumwmo.t.tid
rows: 5
Extra: Using where
*************************** 3. row ***************************
id: 1
select_type: SIMPLE
table: m
type: eq_ref
possible_keys: PRIMARY
key: PRIMARY
key_len: 3
ref: forumwmo.p.author_id
rows: 1
Extra:
3 rows in set (0.00 sec)
</code></pre>
<p>Table structure is:</p>
<pre><code>SHOW CREATE TABLE forum_members\G
*************************** 1. row ***************************
Table: forum_members
Create Table: CREATE TABLE `forum_members` (
`member_id` mediumint(8) NOT NULL AUTO_INCREMENT,
`name` varchar(32) NOT NULL DEFAULT '',
`member_group_id` smallint(3) NOT NULL DEFAULT '0',
`email` varchar(150) NOT NULL DEFAULT '',
`joined` int(10) NOT NULL DEFAULT '0',
`ip_address` varchar(16) NOT NULL DEFAULT '',
`posts` mediumint(7) DEFAULT '0',
`title` varchar(64) DEFAULT NULL,
`allow_admin_mails` tinyint(1) DEFAULT NULL,
`time_offset` varchar(10) DEFAULT NULL,
`hide_email` varchar(8) DEFAULT NULL,
`email_pm` tinyint(1) DEFAULT NULL,
`email_full` tinyint(1) DEFAULT NULL,
`skin` smallint(5) DEFAULT NULL,
`warn_level` int(10) DEFAULT NULL,
`warn_lastwarn` int(10) NOT NULL DEFAULT '0',
`language` varchar(32) DEFAULT NULL,
`last_post` int(10) DEFAULT NULL,
`restrict_post` varchar(100) NOT NULL DEFAULT '0',
`view_sigs` tinyint(1) DEFAULT '1',
`view_img` tinyint(1) DEFAULT '1',
`view_avs` tinyint(1) DEFAULT '1',
`view_pop` tinyint(1) DEFAULT '1',
`bday_day` int(2) DEFAULT NULL,
`bday_month` int(2) DEFAULT NULL,
`bday_year` int(4) DEFAULT NULL,
`msg_count_new` int(2) NOT NULL DEFAULT '0',
`msg_count_total` int(3) NOT NULL DEFAULT '0',
`msg_count_reset` int(1) NOT NULL DEFAULT '0',
`msg_show_notification` int(1) NOT NULL DEFAULT '0',
`misc` varchar(128) DEFAULT NULL,
`last_visit` int(10) DEFAULT '0',
`last_activity` int(10) DEFAULT '0',
`dst_in_use` tinyint(1) DEFAULT '0',
`view_prefs` varchar(64) DEFAULT '-1&-1',
`coppa_user` tinyint(1) DEFAULT '0',
`mod_posts` varchar(100) NOT NULL DEFAULT '0',
`auto_track` varchar(50) DEFAULT '0',
`org_perm_id` varchar(255) DEFAULT '',
`temp_ban` varchar(100) DEFAULT '0',
`sub_end` int(10) NOT NULL DEFAULT '0',
`no_sig_lims` tinyint(1) NOT NULL DEFAULT '0',
`login_anonymous` char(3) NOT NULL DEFAULT '0&0',
`ignored_users` text,
`mgroup_others` varchar(255) NOT NULL DEFAULT '',
`member_login_key` varchar(32) NOT NULL DEFAULT '',
`member_login_key_expire` int(10) NOT NULL DEFAULT '0',
`subs_pkg_chosen` smallint(3) NOT NULL DEFAULT '0',
`has_blog` tinyint(1) NOT NULL DEFAULT '0',
`members_auto_dst` tinyint(1) NOT NULL DEFAULT '1',
`members_cache` mediumtext,
`members_disable_pm` int(1) NOT NULL DEFAULT '0',
`members_display_name` varchar(255) NOT NULL DEFAULT '',
`members_seo_name` varchar(255) NOT NULL DEFAULT '',
`members_created_remote` tinyint(1) NOT NULL DEFAULT '0',
`members_editor_choice` char(3) NOT NULL DEFAULT 'std',
`members_profile_views` int(10) unsigned NOT NULL DEFAULT '0',
`members_l_display_name` varchar(255) NOT NULL DEFAULT '0',
`members_l_username` varchar(255) NOT NULL DEFAULT '0',
`failed_logins` text,
`failed_login_count` smallint(3) NOT NULL DEFAULT '0',
`has_gallery` int(1) DEFAULT '0',
`members_pass_hash` varchar(32) NOT NULL DEFAULT '',
`members_pass_salt` varchar(5) NOT NULL DEFAULT '',
`member_banned` tinyint(1) NOT NULL DEFAULT '0',
`identity_url` text,
`member_uploader` varchar(32) NOT NULL DEFAULT 'default',
`members_bitoptions` int(10) unsigned NOT NULL DEFAULT '0',
`fb_uid` bigint(20) NOT NULL DEFAULT '0',
`fb_emailhash` varchar(60) NOT NULL DEFAULT '',
`fb_emailallow` int(1) NOT NULL DEFAULT '0',
`fb_lastsync` int(10) NOT NULL DEFAULT '0',
`members_day_posts` varchar(32) NOT NULL DEFAULT '0,0',
`live_id` varchar(32) DEFAULT NULL,
PRIMARY KEY (`member_id`),
KEY `mgroup` (`member_group_id`),
KEY `bday_day` (`bday_day`),
KEY `bday_month` (`bday_month`),
KEY `members_l_display_name` (`members_l_display_name`),
KEY `members_l_username` (`members_l_username`),
KEY `member_banned` (`member_banned`),
KEY `members_bitoptions` (`members_bitoptions`),
KEY `ip_address` (`ip_address`)
) ENGINE=MyISAM AUTO_INCREMENT=101965 DEFAULT CHARSET=latin1
1 row in set (0.00 sec)
-------------------------------------------------------------------------------
SHOW CREATE TABLE forum_posts\G
*************************** 1. row ***************************
Table: forum_posts
Create Table: CREATE TABLE `forum_posts` (
`append_edit` tinyint(1) DEFAULT '0',
`edit_time` int(10) DEFAULT NULL,
`pid` int(10) NOT NULL AUTO_INCREMENT,
`author_id` mediumint(8) NOT NULL DEFAULT '0',
`author_name` varchar(32) DEFAULT NULL,
`use_sig` tinyint(1) NOT NULL DEFAULT '0',
`use_emo` tinyint(1) NOT NULL DEFAULT '0',
`ip_address` varchar(16) NOT NULL DEFAULT '',
`post_date` int(10) DEFAULT NULL,
`icon_id` smallint(3) DEFAULT NULL,
`post` mediumtext,
`queued` tinyint(1) NOT NULL DEFAULT '0',
`topic_id` int(10) NOT NULL DEFAULT '0',
`post_title` varchar(255) DEFAULT NULL,
`new_topic` tinyint(1) DEFAULT '0',
`edit_name` varchar(255) DEFAULT NULL,
`post_parent` int(10) NOT NULL DEFAULT '0',
`post_key` varchar(32) NOT NULL DEFAULT '0',
`post_htmlstate` smallint(1) NOT NULL DEFAULT '0',
`post_edit_reason` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`pid`),
KEY `author_id` (`author_id`,`topic_id`),
KEY `post_date` (`post_date`),
KEY `topic_id` (`topic_id`,`queued`,`pid`,`post_date`),
KEY `post_key` (`post_key`),
KEY `ip_address` (`ip_address`)
) ENGINE=MyISAM AUTO_INCREMENT=988489 DEFAULT CHARSET=latin1
1 row in set (0.00 sec)
-------------------------------------------------------------------------------
SHOW CREATE TABLE forum_topics\G
*************************** 1. row ***************************
Table: forum_topics
Create Table: CREATE TABLE `forum_topics` (
`tid` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(70) NOT NULL DEFAULT '',
`description` varchar(250) DEFAULT NULL,
`state` varchar(8) DEFAULT NULL,
`posts` int(10) DEFAULT NULL,
`starter_id` mediumint(8) NOT NULL DEFAULT '0',
`start_date` int(10) DEFAULT NULL,
`last_poster_id` mediumint(8) NOT NULL DEFAULT '0',
`last_post` int(10) DEFAULT NULL,
`icon_id` tinyint(2) DEFAULT NULL,
`starter_name` varchar(255) DEFAULT NULL,
`last_poster_name` varchar(255) DEFAULT NULL,
`poll_state` varchar(8) DEFAULT NULL,
`last_vote` int(10) DEFAULT NULL,
`views` int(10) DEFAULT '0',
`forum_id` smallint(5) NOT NULL DEFAULT '0',
`approved` tinyint(1) NOT NULL DEFAULT '0',
`author_mode` tinyint(1) DEFAULT NULL,
`pinned` tinyint(1) NOT NULL DEFAULT '0',
`moved_to` varchar(64) DEFAULT NULL,
`total_votes` int(5) NOT NULL DEFAULT '0',
`topic_hasattach` smallint(5) NOT NULL DEFAULT '0',
`topic_firstpost` int(10) NOT NULL DEFAULT '0',
`topic_queuedposts` int(10) NOT NULL DEFAULT '0',
`topic_rating_total` smallint(5) unsigned NOT NULL DEFAULT '0',
`topic_rating_hits` smallint(5) unsigned NOT NULL DEFAULT '0',
`topic_open_time` int(10) NOT NULL DEFAULT '0',
`topic_close_time` int(10) NOT NULL DEFAULT '0',
`title_seo` varchar(250) NOT NULL DEFAULT '',
`seo_last_name` varchar(255) NOT NULL DEFAULT '',
`seo_first_name` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`tid`),
KEY `topic_firstpost` (`topic_firstpost`),
KEY `forum_id` (`forum_id`,`pinned`,`approved`),
KEY `last_post` (`forum_id`,`pinned`,`last_post`),
KEY `starter_id` (`starter_id`,`forum_id`,`approved`),
KEY `last_post_sorting` (`last_post`,`forum_id`),
KEY `start_date` (`start_date`),
FULLTEXT KEY `title` (`title`)
) ENGINE=MyISAM AUTO_INCREMENT=227233 DEFAULT CHARSET=latin1
1 row in set (0.00 sec)
</code></pre>
<p>Table properties are:</p>
<pre><code>SHOW TABLE STATUS LIKE 'forum_members'\G
*************************** 1. row ***************************
Name: forum_members
Engine: MyISAM
Version: 10
Row_format: Dynamic
Rows: 64866
Avg_row_length: 257
Data_length: 16688164
Max_data_length: 281474976710655
Index_length: 6540288
Data_free: 0
Auto_increment: 101965
Create_time: 2009-12-02 05:45:59
Update_time: 2009-12-02 05:46:07
Check_time: 2009-12-02 05:49:23
Collation: latin1_swedish_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
-------------------------------------------------------------------------------
SHOW TABLE STATUS LIKE 'forum_posts'\G
*************************** 1. row ***************************
Name: forum_posts
Engine: MyISAM
Version: 10
Row_format: Dynamic
Rows: 581777
Avg_row_length: 720
Data_length: 419170168
Max_data_length: 281474976710655
Index_length: 46439424
Data_free: 0
Auto_increment: 988489
Create_time: 2009-12-02 05:47:04
Update_time: 2009-12-02 05:48:13
Check_time: 2009-12-02 05:49:28
Collation: latin1_swedish_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
-------------------------------------------------------------------------------
SHOW TABLE STATUS LIKE 'forum_topics'\G
*************************** 1. row ***************************
Name: forum_topics
Engine: MyISAM
Version: 10
Row_format: Dynamic
Rows: 117458
Avg_row_length: 144
Data_length: 17004836
Max_data_length: 281474976710655
Index_length: 14105600
Data_free: 0
Auto_increment: 227233
Create_time: 2009-12-02 05:48:38
Update_time: 2009-12-02 05:48:43
Check_time: 2009-12-02 05:49:28
Collation: latin1_swedish_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
</code></pre>
<p>Other configuration details:</p>
<pre><code>SHOW VARIABLES LIKE '%buffer%'\G
*************************** 1. row ***************************
Variable_name: bulk_insert_buffer_size
Value: 8388608
*************************** 2. row ***************************
Variable_name: innodb_buffer_pool_size
Value: 8388608
*************************** 3. row ***************************
Variable_name: innodb_log_buffer_size
Value: 1048576
*************************** 4. row ***************************
Variable_name: join_buffer_size
Value: 131072
*************************** 5. row ***************************
Variable_name: key_buffer_size
Value: 8384512
*************************** 6. row ***************************
Variable_name: myisam_sort_buffer_size
Value: 8388608
*************************** 7. row ***************************
Variable_name: net_buffer_length
Value: 16384
*************************** 8. row ***************************
Variable_name: pbxt_log_buffer_size
Value: 256K
*************************** 9. row ***************************
Variable_name: pbxt_transaction_buffer_size
Value: 1MB
*************************** 10. row ***************************
Variable_name: preload_buffer_size
Value: 32768
*************************** 11. row ***************************
Variable_name: read_buffer_size
Value: 131072
*************************** 12. row ***************************
Variable_name: read_rnd_buffer_size
Value: 262144
*************************** 13. row ***************************
Variable_name: sort_buffer_size
Value: 2097144
*************************** 14. row ***************************
Variable_name: sql_buffer_result
Value: OFF
14 rows in set (0.00 sec)
</code></pre>
http://stackoverflow.com/questions/286334/finding-head-and-tail-events-in-sql-server-optimisation0Finding head and tail events in SQL Server (Optimisation) Sam Saffron2008-11-13T05:36:52Z2009-12-05T01:20:53Z
<p>I have a table of events, I need to find all tail events of type 1 and all head events of type 1. </p>
<p>So, for the set of events in this order [1, 1], 3, 1 ,4, 5, [1,1,1] the brackets denote head and tail events of type 1. </p>
<p>This is much better illustrated in SQL:</p>
<pre><code>drop table #event
go
create table #event (group_id int, [date] datetime, [type] int)
create index idx1 on #event (group_id, date)
insert into #event values (1, '2000-01-01', 1)
insert into #event values (1, '2000-01-02', 1)
insert into #event values (1, '2000-01-03', 3)
insert into #event values (1, '2000-01-04', 2)
insert into #event values (1, '2000-01-05', 1)
insert into #event values (2, '2000-01-01', 2)
insert into #event values (2, '2000-01-02', 2)
insert into #event values (2, '2000-01-03', 3)
insert into #event values (2, '2000-01-04', 2)
insert into #event values (2, '2000-01-05', 1)
insert into #event values (3, '2000-01-01', 1)
insert into #event values (3, '2000-01-02', 2)
insert into #event values (3, '2000-01-03', 1)
insert into #event values (3, '2000-01-04', 2)
insert into #event values (3, '2000-01-05', 2)
insert into #event values (4, '2000-01-01', 2)
insert into #event values (4, '2000-01-02', 2)
insert into #event values (4, '2000-01-03', 3)
insert into #event values (4, '2000-01-04', 1)
insert into #event values (4, '2000-01-05', 1)
go
select e1.* from #event e1
where (
not exists (
select top 1 1
from #event e2
where e1.group_id = e2.group_id
and e2.date < e1.date
and e2.type <> 1
) or not exists (
select top 1 1
from #event e2
where e1.group_id = e2.group_id
and e2.date > e1.date
and e2.type <> 1
)
)
and e1.type = 1
</code></pre>
<p>Expected results: </p>
<pre><code>1 2000-01-01 00:00:00.000 1
1 2000-01-02 00:00:00.000 1
1 2000-01-05 00:00:00.000 1
2 2000-01-05 00:00:00.000 1
3 2000-01-01 00:00:00.000 1
4 2000-01-04 00:00:00.000 1
4 2000-01-05 00:00:00.000 1
</code></pre>
<p>This all works just fine and returns my expected results, but it scans through the table 3 times. Is there any way to make this perform faster and reduce the number of table scans? </p>
http://stackoverflow.com/questions/1850456/compare-the-textual-content-of-websites1Compare the textual content of websitesSune Rievers2009-12-04T23:59:47Z2009-12-05T00:12:45Z
<p>I'm experimenting a bit with textual comparison/basic plagiarism detection, and want to try this on a website-to-website basis. However, I'm a bit stuck in finding a proper way to process the text.</p>
<p>How would you process and compare the content of two websites for plagiarism?</p>
<p>I'm thinking something like this pseudo-code:</p>
<pre><code>// extract text
foreach website in websites
crawl website - store structure so pages are only scanned once
extract text blocks from all pages - store this is in list
// compare
foreach text in website1.textlist
compare with all text in website2.textlist
</code></pre>
<p>I realize that this solution could very quickly accumulate a lot of data, so it might only be possible to make it work with very small websites.</p>
<p>I haven't decided on the actual text comparison algorithm yet, but right now I'm more interested in getting the actual process algorithm working first.</p>
<p>I'm thinking it would be a good idea to extract all text as individual text pieces (from paragraphs, tables, headers and so on), as text can move around on pages.</p>
<p>I'm implementing this in C# (maybe ASP.NET).</p>
<p>I'm very interested in any input or advice you might have, so please shoot! :)</p>
http://stackoverflow.com/questions/226282/what-are-the-most-hardcore-optimisations-youve-seen12What are the most hardcore optimisations you've seen?TraumaPony2008-10-22T15:25:55Z2009-12-04T21:25:28Z
<p>I'm not talking about algorithmic stuff (eg use quicksort instead of bubblesort), and I'm not talking about simple things like loop unrolling.</p>
<p>I'm talking about the <em>hardcore</em> stuff. Like <a href="http://www.muppetlabs.com/~breadbox/software/tiny/teensy.html" rel="nofollow">Tiny Teensy ELF</a>, <a href="http://catb.org/jargon/html/story-of-mel.html" rel="nofollow">The Story of Mel</a>; practically everything in the demoscene, and so on.</p>
http://stackoverflow.com/questions/1847846/pass-by-value-or-reference-to-a-c-constructor-that-needs-to-store-a-copy2Pass by value or reference, to a C++ constructor that needs to store a copy?Kurt Glastetter2009-12-04T15:52:21Z2009-12-04T21:07:39Z
<p>Should a C++ (implicit or explicit) value constructor accept its parameter(s) by value or reference-to-const, when it needs to store a copy of the argument(s) in its object either way?</p>
<p>Here is the shortest example I can think of:</p>
<pre><code>struct foo {
bar _b;
foo(bar [const&] b) // pass by value or reference-to-const?
: _b(b) { }
};
</code></pre>
<p>The idea here is that I want to minimize the calls to bar's copy constructor when a foo object is created, in any of the various ways in which a foo object might get created.</p>
<p>Please note that I do know a little bit about copy elision and (Named) Return Value Optimization, and I have read <a href="http://cpp-next.com/archive/2009/08/want-speed-pass-by-value/" rel="nofollow">"Want Speed? Pass by Value"</a>, however I don't think the article directly addresses this use case.</p>
<p><strong>Edit:</strong> I should be more specific.</p>
<p>Assume that I can't know the <code>sizeof(bar)</code>, or whether or not <code>bar</code> is a fundamental, built-in type (<code>bar</code> may be a template parameter, and <code>foo</code> may be a class template instead of a class). Also, don't assume that <code>foo</code>'s constructor can be inlined (or <code>bar</code>'s, for that matter). Do assume that I at least might be using a compiler that implements RVO.</p>
<p>What I would like is for there to be a possibility (given compiler optimizations) that a call like this will invoke no calls to <code>bar</code>'s copy constructor whatsoever (even when executing <code>_b(b)</code> in <code>foo</code>'s initialization list):</p>
<pre><code>foo f = function_that_creates_and_returns_a_bar_object_using_rvo();
</code></pre>
<p>Is there any possibility (given the C++98 standard) that this can be done, and if so, is it more or less likely to work if <code>foo</code> accepts its parameter by reference-to-const instead of by value?</p>
http://stackoverflow.com/questions/1848950/most-efficent-way-to-add-formatting-excel-vba0Most Efficent Way to Add Formatting Excel - VBAIrwin M. Fletcher2009-12-04T18:53:16Z2009-12-04T21:07:28Z
<p>I have a macro that add hundreds of lines of data to an excel spreadsheet. I call a procedure from a loop which inserts each line of data. I have been applying the formatting for the row each time that I insert that data. However, during my testing I have found that I can insert all of the data about 3/4 of second faster (3.3 sec vs. 4.11 sec) when I don’t apply the formatting line by line but all at once. The issue that I am trying to overcome is that not every row has the same formatting; however, there is a predictable pattern. Two rows of one formatting and one row of different formatting. Is there a way without looping to apply these two different formats all at one that would allow me to keep the performance gains that I am getting (users would like to see a sub 2 second response so this could be a big gain).</p>
<p>I am currently using the following code (application settings such as screenupdating, calculations, and events are all turned off during this)</p>
<pre><code>Private Sub BuildTerminalSummary(ByRef terminals, ByVal timeFrame)
Dim terminal As clsTerminal
Dim curSheet As Worksheet
Dim breakLoop As Boolean
Dim terminalCode As String
Dim rowNumber As Long
Set terminal = New clsTerminal
Set curSheet = Sheets("Terminal Summary")
rowNumber = 7
'Remove all content, borders, and tint
ClearPage curSheet, rowNumber
For Each terminal In terminals
AddDetailData curSheet, terminal.InfoArray, rowNumber
AddDetailData curSheet, terminal.PriorInfoArray, rowNumber + 1
AddDiffPercentFormulas curSheet, terminal.DiffPercentInfoArray, rowNumber + 2
rowNumber = rowNumber + 2
Next terminal
'Make sure the columns are wide enough to display the numbers
curSheet.Cells.EntireColumn.AutoFit
End Sub
Private Sub AddDetailData(ByRef curSheet, ByRef data, ByVal rowNumber)
With curSheet
With .Cells(rowNumber, 3).Resize(1, 16)
.value = data
.Style = "Comma"
.NumberFormat = "_(* #,##0_);_(* (#,##0);_(* ""-""??_);_(@_)"
End With
'This overides the formatting in the revenue columns with currency instead of comma style
With .Cells(rowNumber, 5).Resize(1, 2)
.Style = "Currency"
.NumberFormat = "_($* #,##0_);_($* (#,##0);_($* ""-""??_);_(@_)"
End With
With .Cells(rowNumber, 13).Resize(1, 6)
.Style = "Currency"
End With
End With
End Sub
Private Sub AddDiffPercentFormulas(ByRef curSheet, ByRef data, ByVal rowNumber)
With curSheet.Cells(rowNumber, 3).Resize(1, 16)
.value = data
.NumberFormat = "0.00%"
End With
End Sub
</code></pre>
http://stackoverflow.com/questions/1837546/how-would-you-make-this-switch-statement-as-fast-as-possible14How would you make this switch statement as fast as possible?Dan2009-12-03T04:02:57Z2009-12-04T20:04:26Z
<p><strong>2009-12-04 UPDATE</strong>: For profiling results on a number of the suggestions posted here, see below!</p>
<p><hr></p>
<h1>The Question</h1>
<p>Consider the following very harmless, very straightforward method, which uses a <code>switch</code> statement to return a defined enum value:</p>
<pre><code>public static MarketDataExchange GetMarketDataExchange(string ActivCode) {
if (ActivCode == null) return MarketDataExchange.NONE;
switch (ActivCode) {
case "": return MarketDataExchange.NBBO;
case "A": return MarketDataExchange.AMEX;
case "B": return MarketDataExchange.BSE;
case "BT": return MarketDataExchange.BATS;
case "C": return MarketDataExchange.NSE;
case "MW": return MarketDataExchange.CHX;
case "N": return MarketDataExchange.NYSE;
case "PA": return MarketDataExchange.ARCA;
case "Q": return MarketDataExchange.NASDAQ;
case "QD": return MarketDataExchange.NASDAQ_ADF;
case "W": return MarketDataExchange.CBOE;
case "X": return MarketDataExchange.PHLX;
case "Y": return MarketDataExchange.DIRECTEDGE;
}
return MarketDataExchange.NONE;
}
</code></pre>
<p>My colleague and I batted around a few ideas today about how to actually make this method faster, and we came up with some interesting modifications that did in fact improve its performance rather significantly (proportionally speaking, of course). I'd be interested to know what sorts of optimizations anyone else out there can think up that might not have occurred to us.</p>
<p>Right off the bat, let me just offer a quick disclaimer: this is for <strong>fun</strong>, and <em>not</em> to fuel the whole "to optimize or not to optimize" debate. That said, if you count yourself among those who dogmatically believe "premature optimization is the root of all evil," just be aware that I work for a high-frequency trading firm, where <em>everything</em> needs to run absolutely as fast as possible--bottleneck or not. So, even though I'm posting this on SO for <strong>fun</strong>, it isn't just a huge waste of time, either.</p>
<p>One more quick note: I'm interested in two kinds of answers--those that assume every input will be a valid ActivCode (one of the strings in the <code>switch</code> statement above), and those that do not. I am <em>almost</em> certain that making the first assumption allows for further speed improvements; anyway, it did for us. But I know that improvements are possible either way.</p>
<p><hr></p>
<h1>The Results</h1>
<p>Well, it turns out that the fastest solution so far (that I've tested) came from João Angelo, whose suggestion was actually very simple, yet extremely clever. The solution that my coworker and I had devised (after trying out several approaches, many of which were thought up here as well) came in second place; I was going to post it, but it turns out that Mark Ransom came up with the exact same idea, so just check out his answer!</p>
<p>Since I ran these tests, some other users have posted even <em>newer</em> ideas... I will test them in due time, when I have a few more minutes to spare.</p>
<p>I ran these tests on two different machines: my personal computer at home (a dual-core Athlon with 4 Gb RAM running Windows 7 64-bit) and my development machine at work (a dual-core Athlon with 2 Gb RAM running Windows XP SP3). Obviously, the times were different; however, the <em>relative</em> times, meaning, how each method compared to every other method, were the same. That is to say, the fastest was the fastest on both machines, etc.</p>
<p>Now for the results. (The times I'm posting below are from my home computer.)</p>
<p>But first, for reference--the original switch statement:<br>
1000000 runs: 98.88 ms<br>
Average: 0.09888 microsecond</p>
<p>Fastest optimizations so far:</p>
<ol>
<li><p>João Angelo's idea of assigning values to the enums based on the hash codes of the ActivCode strings and then directly casing <code>ActivCode.GetHashCode()</code> to <code>MarketDataExchange</code>:<br>
1000000 runs: 23.64 ms<br>
Average: 0.02364 microsecond<br>
Speed increase: 329.90%</p></li>
<li><p>My colleague's and my idea of casting <code>ActivCode[0]</code> to an <code>int</code> and retrieving the appropriate <code>MarketDataExchange</code> from an array initialized on startup (this exact same idea was suggested by Mark Ransom):<br>
1000000 runs: 28.76 ms<br>
Average: 0.02876 microsecond<br>
Speed increase: 253.13%</p></li>
<li><p>tster's idea of switching on the output of <code>ActivCode.GetHashCode()</code> instead of <code>ActivCode</code>:<br>
1000000 runs: 34.69 ms<br>
Average: 0.03469 microsecond<br>
Speed increase: 185.04%</p></li>
<li><p>The idea, suggested by several users including Auraseer, tster, and kyoryu, of switching on <code>ActivCode[0]</code> instead of <code>ActivCode</code>:<br>
1000000 runs: 36.57 ms<br>
Average: 0.03657 microsecond<br>
Speed increase: 174.66% </p></li>
<li><p>Loadmaster's idea of using the fast hash, <code>ActivCode[0] + ActivCode[1]*0x100</code>:<br>
1000000 runs: 39.53 ms<br>
Average: 0.03953 microsecond<br>
Speed increase: 153.53%</p></li>
<li><p>Using a hashtable (<code>Dictionary<string, MarketDataExchange></code>), as suggested by many:<br>
1000000 runs: 88.32 ms<br>
Average: 0.08832 microsecond<br>
Speed increase: 12.36%</p></li>
<li><p>Using a binary search:<br>
1000000 runs: 1031 ms<br>
Average: 1.031 microseconds<br>
Speed increase: none (performance worsened)</p></li>
</ol>
<p>Let me just say that it has been really cool to see how many different ideas people had on this simple problem. This was very interesting to me, and I'm quite thankful to everyone who has contributed and made a suggestion so far.</p>
http://stackoverflow.com/questions/1842472/traversing-a-binary-tree-with-multiple-threads1Traversing a Binary Tree with multiple threadsBrendan Long2009-12-03T19:55:19Z2009-12-04T19:35:43Z
<p>So I'm working on a speed contest in Java. I have (number of processors) threads doing work, and they all need to add to a B-Tree. Originally I just used a synchronized add method, but I wanted to make it so threads could follow each other through the tree (each thread only has the lock on the object it's accessing). Unfortunately, even for a very large file (48,000 lines), my new binary tree is slower than the old one. I assume this is because I'm getting and releasing a lock every time I move in the tree. Is this the best way to do this or is there a better way?</p>
<p>Each node has a ReentrantLock named lock, and getLock() and releaseLock() just call lock.lock() and lock.unlock();</p>
<p>My code:</p>
<pre><code>public void add(String sortedWord, String word) {
synchronized(this){
if (head == null) {
head = new TreeNode(sortedWord, word);
return;
}
head.getLock();
}
TreeNode current = head, previous = null;
while (current != null) {
// If this is an anagram of another word in the list..
if (current.getSortedWord().equals(sortedWord)) {
current.add(word);
current.releaseLock();
return;
}
// New word is less than current word
else if (current.compareTo(sortedWord) > 0) {
previous = current;
current = current.getLeft();
if(current != null){
current.getLock();
previous.releaseLock();
}
}
// New word greater than current word
else {
previous = current;
current = current.getRight();
if(current != null){
current.getLock();
previous.releaseLock();
}
}
}
if (previous.compareTo(sortedWord) > 0) {
previous.setLeft(sortedWord, word);
}
else {
previous.setRight(sortedWord, word);
}
previous.releaseLock();
}
</code></pre>
<p>EDIT: Just to clarify, my code is structured like this: The main thread reads input from a file and adds the words to a queue, each worker thread pull words from the queue and does some work (including sorting them and adding them to the binary tree).</p>
http://stackoverflow.com/questions/1838476/different-ways-of-adding-to-dictionary2Different ways of adding to DictionarySune Rievers2009-12-03T08:28:08Z2009-12-04T09:32:07Z
<p>What is the difference in <code>Dictionary.add(key, value)</code> and <code>Dictionary[key] = value</code>?</p>
<p>I've noticed that the last version does not throw an <code>ArgumentException</code> when inserting a duplicate key, but is there any reason to prefer the first version?</p>
<p><strong>Edit</strong>: Does anyone have an authoritative source of information about this? I've tried MSDN, but it is as always a wild goose chase :(</p>
http://stackoverflow.com/questions/1840246/c-optimized-select-string-creation-loop1c# Optimized Select string creation loopJulien Daniel2009-12-03T14:36:59Z2009-12-04T03:18:15Z
<p>I'm looking to optimized this piece of code. It will process 15000 - 20000 lines. For now I have 9000 lines and it take 30 sec approx. I know string concatenation is slow but I don't know how to do it another way.</p>
<pre><code> //
// Check if composite primary keys existe in database
//
string strSelect = "SELECT * FROM " + _strTableName + " WHERE ";
for (int i = 0; i < strCompositeKeyField.Length; i++)
{
bool boolKeyProcess = false;
strSelect += _strHeaderLineSplitedArray[(int)arrayListCompositeKeyIndex[i]] + " = ";
DataColumn thisColomn = _dsProcessDataFromFileAndPutInDataSetDataSet.Tables["Repartition"].Columns[_strHeaderLineSplitedArray[(int)arrayListCompositeKeyIndex[i]]];
//_strProcessDataFromFileAndPutInDataSetLog += "Debug: Composite key : " + _strHeaderLineSplitedArray[(int)arrayListCompositeKeyIndex[i]] + " dataType : " + thisColomn.DataType.ToString() + " arrayListCompositeKeyIndex[i] = " + arrayListCompositeKeyIndex[i] + " \n";
// check if field is datetime to make convertion
if (thisColomn.DataType.ToString() == "System.DateTime")
{
DateTime thisDateTime = DateTime.ParseExact(strReadDataLineSplited[(int)arrayListCompositeKeyIndex[i]], _strDateConvertion, null);
strSelect += "'" + thisDateTime.ToString() + "'";
boolKeyProcess = true;
}
// check if field a string to add ''
else if (thisColomn.DataType.ToString() == "System.String")
{
strSelect += "'" + strReadDataLineSplited[(int)arrayListCompositeKeyIndex[i]] + "'";
boolKeyProcess = true;
}
// check if field need hour to second converstion
else
{
for (int j = 0; j < strHourToSecondConverstionField.Length; j++)
{
if (strCompositeKeyField[i] == strHourToSecondConverstionField[j])
{
DateTime thisDateTime = DateTime.ParseExact(strReadDataLineSplited[(int)arrayListCompositeKeyIndex[i]], _strHourConvertion, System.Globalization.CultureInfo.CurrentCulture);
strSelect += thisDateTime.TimeOfDay.TotalSeconds.ToString();
boolKeyProcess = true;
}
}
}
// if not allready process process as normal
if (!boolKeyProcess)
{
strSelect += strReadDataLineSplited[(int)arrayListCompositeKeyIndex[i]];
}
// Add " AND " if not last field
if (i != strCompositeKeyField.Length - 1)
{
strSelect += " AND ";
}
}
//_strProcessDataFromFileAndPutInDataSetLog += "Debug: SELECT = " + strSelect + "\n";
SqlDataAdapter AdapterCheckCompositePrimaryKeys = new SqlDataAdapter(strSelect, _scProcessDataFrinFileAndPutInDataSetSqlConnection);
DataSet DataSetCheckCompositePrimaryKeys = new DataSet();
AdapterCheckCompositePrimaryKeys.Fill(DataSetCheckCompositePrimaryKeys, "PrimaryKey");
</code></pre>
http://stackoverflow.com/questions/1841437/sql-optimization-question-oracle1SQL optimization question (oracle)David Oneill2009-12-03T17:14:49Z2009-12-03T21:48:57Z
<p>Edit: Please answer one of the two answers I ask. I <em>know</em> there are other options that would be better in a different case. These other potential options (partitioning the table, running as one large delete statement w/o committing in batches, etc) are <b>NOT</b> options in my case due to things outside my control. </p>
<p>I have several very large tables to delete from. All have the same foreign key that is indexed. I need to delete certain records from all tables.</p>
<pre><code>table source
id --primary_key
import_source --used for choosing the ids to delete
table t1
id --foreign key
--other fields
table t2
id --foreign key
--different other fields
</code></pre>
<p>Usually when doing a delete like this, I'll put together a loop to step through all the ids:</p>
<pre><code>declare
my_counter integer := 0;
begin
for cur in (
select id from source where import_source = 'bad.txt'
) loop
begin
delete from source where id = cur.id;
delete from t1 where id = cur.id;
delete from t2 where id = cur.id;
my_counter := my_counter + 1;
if my_counter > 500 then
my_counter := 0;
commit;
end if;
end;
end loop;
commit;
end;
</code></pre>
<p>However, in some code I saw elsewhere, it was put together in seperate loops, one for each delete. </p>
<pre><code>declare
type import_ids is table of integer index by pls_integer;
my_count integer := 0;
begin
select id bulk collect into my_import_ids from source where import_source = 'bad.txt'
for h in 1..my_import_ids.count
delete from t1 where id = my_import_ids(h);
--do commit check
end loop;
for h in 1..my_import_ids.count
delete from t2 where id = my_import_ids(h);
--do commit check
end loop;
--do commit check will be replaced with the same chunk to commit every 500 rows as the above query
</code></pre>
<p>So I need one of the following answered:</p>
<p>1) Which of these is better?</p>
<p>2) How can I find out which is better for my particular case? (IE if it depends on how many tables I have, how big they are, etc)</p>
<p>Edit: </p>
<p>I <em>must</em> do this in a loop due to the size of these tables. I will be deleting thousands of records from tables with hundreds of millions of records. This is happening on a system that can't afford to have the tables locked for that long.</p>
<p>EDIT:</p>
<p>NOTE: I am <em>required</em> to commit in batches. The amount of data is too large to do it in one batch. The rollback tables will crash our database.</p>
<p>If there is a way to commit in batches other than looping, I'd be willing to hear it. Otherwise, don't bother saying that I shouldn't use a loop...</p>
http://stackoverflow.com/questions/1842009/basic-java-threading-issue4Basic Java threading issueLawrence Johnston2009-12-03T18:45:06Z2009-12-03T19:55:56Z
<p>Lets say I'm interacting with a system that has two incrementing counters which depend on each other (these counters will never decrement):
int totalFoos; // barredFoos plus nonBarredFoos
int barredFoos;</p>
<p>I also have two methods:
int getTotalFoos(); // Basically a network call to localhost
int getBarredFoos(); // Basically a network call to localhost</p>
<p>These two counters are kept and incremented by code that I don't have access to. Let's assume that it increments both counters on an alternate thread but in a thread-safe manner (i.e. at any given point in time the two counters will be in sync).</p>
<p>What is the best way to get an accurate count of both barredFoos and nonBarredFoos at a single point in time?</p>
<p>The completely naive implementation:</p>
<pre><code>int totalFoos = getTotalFoos();
int barredFoos = getBarredFoos();
int nonBarredFoos = totalFoos - barredFoos;
</code></pre>
<p>This has the issue that the system could increment both counters in between the two method calls and then my two copies would be out of sync and <code>barredFoos</code> would have a value of more than it did when <code>totalFoos</code> was fetched.</p>
<p>Basic double-checked implementation:</p>
<pre><code>while (true) {
int totalFoos = getTotalFoos();
int barredFoos = getBarredFoos();
if (totalFoos == getTotalFoos()) {
// totalFoos did not change during fetch of barredFoos, so barredFoos should be accurate.
int nonBarredFoos = totalFoos - barredFoos;
break;
}
// totalFoos changed during fetch of barredFoos, try again
}
</code></pre>
<p>This should work in theory, but I'm not sure that the JVM guarantees that this is what actually happens in practice once optimization and such is taken into account. For an example of these concerns, see <a href="http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html" rel="nofollow">http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html</a> (Link via Romain Muller).</p>
<p>Given the methods I have and the assumption above that the counters are in fact updated together, is there a way I can guarantee that my copies of the two counts are in sync?</p>
http://stackoverflow.com/questions/1154315/javascript-firebug-cannot-access-optimized-closure-what-does-it-mean10Javascript + Firebug : "cannot access optimized closure" What does it mean?interstar2009-07-20T15:41:42Z2009-12-03T15:20:22Z
<p>I just got the following error in a piece of javascript (in Firefox 3.5, with Firebug running)</p>
<pre><code>cannot access optimized closure
</code></pre>
<p>I know, superficially, what caused the error. I had a line </p>
<pre><code>options.length()
</code></pre>
<p>instead of </p>
<pre><code>options.length
</code></pre>
<p>Fixing this bug, made the message go away. But I'm curious. What does this mean? What is an optimized closure? Is optimizing an enclosure something that the javascript interpretter does automatically? What does it do?</p>
http://stackoverflow.com/questions/1838415/sqlite-mirrorred-id-only-table-worth-it-or-not0sqlite: mirrorred ID-only table, worth it or notMaksee2009-12-03T08:15:57Z2009-12-03T08:15:57Z
<p>I have a project where I need to load all ids of a table and have random access for different records afterward. This can be effectively done with loading results from <i>SELECT rowid FROM...</i> into an array and accessing actual data with <i>SELECT * ... WHERE rowid = . </i> This approach gives decent results for example for a 90M/70,000 records table (about 2 seconds on a 1.7 Ghz Pentium 4). But I'm looking for further improvement. So the thought was about creating a mirror table where we mirror only rowids of original table, will this approach give the performance increase? The idea behind this is that the record from mirror table took less space by design so the table is effectively packed in fewer sectors so it will took less time to load these ids than the ones from the original one. </p>
<p>I know that I can perform a test myself, but maybe someone had a similar experience already or have some knowledge of the sqlite internals to tell whether it could be effective </p>
http://stackoverflow.com/questions/1825418/optimising-datediff1Optimising DATEDIFFNai2009-12-01T10:53:49Z2009-12-02T22:17:48Z
<p>I just want to check my logic there.</p>
<p>Suppose I want to find all new products in the last 30 days. My current procedure is this:</p>
<pre><code>SELECT ProductName
FROM ProductTable
WHERE DATEDIFF( d, CreateDate, GETDATE() ) < 30
</code></pre>
<p>However, I understand that functions like DATEDIFF will not use the non-clustered index I have created on <code>CreateDate</code>. So therefore, will my query run quicker using the following procedure:</p>
<pre><code>SELECT ProductName
FROM ProductTable
WHERE CreateDate >= DATEADD( d, -30, GETDATE() ) AND CreateDate < GETDATE()
</code></pre>
<p>BTW, I don't have SQL Server from where I am so I cant test this using the execution plan.</p>
http://stackoverflow.com/questions/1687282/google-admanager-and-jquery0Google admanager and JqueryNetto2009-11-06T12:32:00Z2009-12-02T20:07:16Z
<p>I have Google admanager and Jquery and Jquery UI.
But it takes a long time to load the Jquery because Google Admanager.
I have about 30 banners in Google Admanager.
Anybody know how to get the Jquery load first?
Thanks</p>
http://stackoverflow.com/questions/1834716/sql-query-works-quickly-with-19-items-in-in-clause-much-slower-with-20-why4SQL Query works quickly with 19 items in "IN" clause - much slower with 20. Why?Raggedtoad2009-12-02T18:03:06Z2009-12-02T18:37:15Z
<p>I have a query that includes this:</p>
<pre><code>... AND Record.RecordID IN (1,2,3,10,11,12,13,16,17,18,26,27,28,557,31,32,33,36,37,93) AND ...
</code></pre>
<p>The problem seems to be that if there are 20 items or more in that list, the query takes over 25 seconds to execute. If there are less than 20, it executes immediately. Any ideas on how to optimize?</p>
http://stackoverflow.com/questions/1833249/when-in-optimization-phase-would-it-be-smart-to-pass-all-array-by-ref2When in optimization phase, would it be smart to pass all array by ref?Itay Moav2009-12-02T14:29:59Z2009-12-02T14:46:38Z
<p>In PHP, When we get to the optimization phase of the application (I am speaking about an app that handles hundreds of thousands of users) would it be smart to pass all arrays (where I do not mind what happens to them after I pass them to the function) by ref?</p>
http://stackoverflow.com/questions/1830238/how-much-should-i-add-when-resizing-an-array0How much should I add when resizing an array?Brendan Long2009-12-02T02:09:12Z2009-12-02T12:10:36Z
<p>I'm having a contest with another student to make the fastest version of our homework assignment, and I'm not using an ArrayList for performance reasons (resizing the array myself cut the benchmark time from 56 seconds to 4), but I'm wondering how much I should resize the array every time I need to. Specifically the relevant parts of my code are this:<br />
<br /></p>
<pre><code>private Node[] list;
private int size; // The number of items in the list
private static final int N; // How much to resize the list by every time
public MyClass(){
list = new Node[N];
}
public void add(Node newNode){
if(size == list.length){
list = Arrays.copyOf(list, size + N);
}
list[size] = newNode;
size++;
}
</code></pre>
<p>TL;DR: What should I make <code>N</code>?</p>
http://stackoverflow.com/questions/1831388/configuring-e-tags0configuring e-tagsYgam2009-12-02T08:16:25Z2009-12-02T08:29:15Z
<p>I am using Yslow as a simple speed benchmarking tool and I came across a really confusing concept. The E-tag</p>
<p>So the main problem is : How do I configure E-tags? my grade in yslow says:</p>
<p>There are 19 components with misconfigured ETags</p>
<pre><code>* http://thehotelinventory.com/media/js/jquery.min.js
* http://thehotelinventory.com/media/js/jquery.colorbox.min.js
* http://thehotelinventory.com/media/js/easyslider.min.js
* http://thehotelinventory.com/media/js/jquery.tools.min.js
* http://thehotelinventory.com/media/js/custom.min.js
* http://thehotelinventory.com/media/js/jquery.validate.min.js
* http://thehotelinventory.com/media/images/colorbox/loading_background.png
* http://thehotelinventory.com/media/images/productheaderbg.jpg
* http://thehotelinventory.com/media/images/buttons/field-bg. //etc
</code></pre>
<p>I browsed through the developer.yahoo.com guidelines on website optimization yet I can't really understand the thing with e-tags</p>
http://stackoverflow.com/questions/1815947/seo-optimization-error-improper-crawling-or-improper-indexing-1SEO Optimization Error, improper crawling or improper indexing coderex2009-11-29T16:20:27Z2009-12-02T03:03:53Z
<p>hi,
i have a blog build in wordpress, And my domain name is like example.com (i can't give you the original name, because some times the editors will mark this question as SPAM :( , and if any one really want to check directly from my site will add at the end of the question.)</p>
<p><strong><a href="http://example.com" rel="nofollow">http://example.com</a></strong> and the blog name is <strong><a href="http://example.com/articles/" rel="nofollow">http://example.com/articles/</a></strong></p>
<p>and the <strong>sitemap.xml</strong> is available in <strong><a href="http://example.com/sitemap.xml" rel="nofollow">http://example.com/sitemap.xml</a></strong></p>
<p>Google daily visit my site and all my new articles were crawled, if i search the "articles title + example.com " will get the search result from the google , its my site. but the heading is not the actual one. its getting from another article's data.
(i think can give you a sample search query, please don't take this as a spam)
<strong>Installing Go Language in Ubuntu+tutorboy</strong> - But this will list with proper title after a long title :(, I think now you understood what i am facing ... please help me to find out why this happens.</p>
<p><strong>Edit:</strong>
How can i improve my SEO with wordpress?</p>