active questions tagged efficiency - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T12:07:44Zhttp://stackoverflow.com/feeds/tag/efficiencyhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1801427/what-language-and-possible-web-application-framework-should-i-use-to-develop-a0What language and (possible) web application framework should I use to develop a high traffic web application?Kensai2009-11-26T03:43:40Z2009-11-26T19:54:30Z
<p>I'm currently in the pre-planning stages of a solo web application development project for university, which has about a year as time constraint. The application will have certain wiki-like features and <em>may</em> end up getting a high volume of traffic in the future, which is why whichever language and (possible) development framework I choose must have as priority the capacity to deal with a lot of stress in a sufficiently efficient manner. A close second priority is reducing the development time and complexity. </p>
<p>As of now, I'm facing a case of analysis paralysis since there seems to be a lot of languages to choose from. For example:</p>
<ul>
<li>PHP</li>
<li>Ruby</li>
<li>Java</li>
<li>.NET</li>
<li>Others...</li>
</ul>
<p>And also frameworks such as:</p>
<ul>
<li>CodeIgniter</li>
<li>Symfony</li>
<li>Zend Framework</li>
<li>Ruby on rails</li>
<li>ASP .NET</li>
<li>Many others...</li>
</ul>
<p>As far as I've seen there seems to be some kind of tradeoff between development convenience and efficiency, so I'm trying to find a balance between those two things (among plenty of other considerations). </p>
<p>So, in the end, which should I use based on the application's needs? </p>
<p>If you have developed something similar, which of the options have worked for you?</p>
<p><hr></p>
<p>EDIT: Added more info. As for architecture, I'm not sure yet. </p>
<p>So far, I know PHP, Java, C#, Visual Basic at an intermediate level. Still, I wanted to leave the language option open, since I'm willing to learn another language if necessary, ruby, for example, since it seems quite interesting. </p>
<p>On the other hand, while this decision will probably not be objective enough, there are some numbers to take into consideration. I believe I've read that java, for example, is slower than PHP.</p>
http://stackoverflow.com/questions/1002953/large-sqlite-database-search1Large Sqlite database searchAlex2009-06-16T17:46:18Z2009-11-26T08:11:01Z
<p>How is it possible to implement an efficient large Sqlite db search (more than 90000 entries)?</p>
<p>I'm using Python and SQLObject ORM:</p>
<pre><code> import re
...
def search1():
cr = re.compile(ur'foo')
for item in Item.select():
if cr.search(item.name) or cr.search(item.skim):
print item.name
</code></pre>
<p>This function runs in more than 30 seconds. How should I make it run faster? </p>
<p><strong>UPD</strong>: The test:</p>
<pre><code> for item in Item.select():
pass
</code></pre>
<p>... takes almost the same time as my initial function (0:00:33.093141 to 0:00:33.322414). So the regexps eat no time.</p>
<p>A Sqlite3 shell query:</p>
<pre><code> select '' from item where name like '%foo%';
</code></pre>
<p>runs in about a second. So the main time consumption happens due to the inefficient ORM's data retrieval from db. I guess SQLObject grabs entire rows here, while Sqlite touches only necessary fields.</p>
http://stackoverflow.com/questions/1800137/google-page-speed-what-do-these-messages-mean1Google Page Speed - what do these messages mean?DisgruntledGoat2009-11-25T21:38:05Z2009-11-25T22:23:05Z
<p>I ran the Google Page Speed Firefox extension on a few pages, and under "efficient CSS selectors" it listed various things that are inefficient in my CSS.</p>
<p>But some of the messages seem a bit cryptic - what do these (in bold) mean:</p>
<blockquote>
<p>div#menu h3.soon small<br>
<strong>Tag key with 2 descendant selectors and ID overly qualified with tag and Class overly qualified with tag</strong></p>
<p>table.data tr:nth-child(2n) td<br>
<strong>Tag key with 2 descendant selectors and Class overly qualified with tag</strong></p>
<p>table.data tr.disabled td<br>
<strong>Tag key with 2 descendant selectors and Class overly qualified with tag and Class overly qualified with tag</strong></p>
</blockquote>
<p>I'm assuming they think descendant selectors are bad but there are lots of "overly qualified" as well. I probably won't go to too much effort fixing all these up (there are many) but it would be nice to know what Google actually means here!</p>
http://stackoverflow.com/questions/1797614/need-advice-on-implementation-for-heavy-operation-involving-iphone-a-lot-of-a0Need advice on implementation for "heavy" operation involving iPhone (a lot of) AddressBook contacts.epron2009-11-25T15:16:37Z2009-11-25T15:16:37Z
<p>Hello everyone,
I am developing an SMS service application. At some point the user has to select the contacts he wants to send the SMS so he has 2 options. "Select all contacts" or "Select contacts".</p>
<p>I have some issues regarding on how to implement the "Select all contacts" method since I want to achieve the following functionality:</p>
<ul>
<li>I need to grab all the contacts and iterate through all the the phone properties to match mobile phones against a file I have in Excel format with all the mobile prefixes for all countries.</li>
<li>I need to to display the contact name and mobile phone (if contact has mobile phones matched by the procedure described above) in an indexed tableview with an index list with all the latin alphabet letters A-Z and #. Non English/latin localized contacts should appear under the # index.</li>
</ul>
<p>So what bothers me is:</p>
<ul>
<li><p>How to efficiently store the mobile prefixes i have in Excel format so I can use them for matching mobile phones and how exactly should I perform the comparison between phone properties and mobile prefixes in order for this procedure to be efficient and fast.</p></li>
<li><p>What data stuctures should I use to prepair the indexed tableview datasource.</p></li>
</ul>
<p>Please help me out with any ideas, code snippets and tips regarding this issue</p>
<p>Thanx to all!</p>
http://stackoverflow.com/questions/1792891/mysql-large-query-vs-short-query-with-multiple-ifs0MySQL - large query vs Short query with multiple if'sMark2009-11-24T21:01:24Z2009-11-24T21:10:41Z
<p>This is a really broad question, but I have come across it a couple of times in the last few weeks and I was wondering what the general consensus is regarding good practice and efficiency.</p>
<p><strong>1)</strong></p>
<p>SELECT COUNT(*) FROM table WHERE id='$id', name='$name', owner='$owner_id'</p>
<p>and then based on if there is one result then the record matches.</p>
<p><strong>2)</strong></p>
<p>SELECT * FROM table WHERE id='$id'</p>
<p>and then a series of if commands to check the results match.</p>
<p>Now obviously there are advantages to the second solution as it allows for accurate error reports as to the field that does not match... but if that is not required which is more efficient, considered better practice and is there a difference to the load on the mySQL server between the two?</p>
http://stackoverflow.com/questions/1767261/c-file-i-o-efficiency6C# File I/O EfficiencyAlex2009-11-19T23:14:34Z2009-11-23T18:06:17Z
<p>Hi, I have done a homework assignment, here is the problem statement:</p>
<p>Your program should work as follows:</p>
<ol>
<li>Ask the user to give you a file name. Get the file name and save it.</li>
<li>Open the file.</li>
<li>From the file read a temperature and a wind speed. Both values should be stored in variables declared as double. The file is a text file. Each line of the file contains a temperature and a wind speed value.</li>
<li><p>Calculate the wind chill factor using a programmer written method, and display the result in the form:</p>
<p>For t = temperature from file
and v = wind speed from file
Wind chill index = calculated result degrees Fahrenheit.</p>
<p>Show all numbers with two digits after the decimal point. (Remember-no magic numbers!)</p></li>
<li><p>Repeat these steps until an end of file is encountered.</p></li>
</ol>
<p>I have completed the assignment, my code is below, I was just wondering if there was any way to make it more efficient, or if there are some different and creative ways to accomplish this problem, I already turned this in and got 50/50, but I'm just curious as to how some of you advanced and skilled programmers would approach this problem.</p>
<pre><code>using System;
using System.IO;
class Program
{
// declare constants to use in wind chill factor equation - no magic numbers
const double FIRST_EQUATION_NUMBER = 35.74;
const double SECOND_EQUATION_NUMBER = 0.6215;
const double THIRD_EQUATION_NUMBER = 35.75;
const double FOURTH_EQUATION_NUMBER = 0.4275;
const double EQUATION_EXPONENT = 0.16;
const int DEGREE_SYMBOL_NUMBER = 176;
static void Main()
{
// declare and initialize some variables
string filePath = "";
string line = "";
double temperature = 0.0;
double windSpeed = 0.0;
double windChillFactor = 0.0;
char degreeSymbol = (char)DEGREE_SYMBOL_NUMBER;
// ask user for a file path
Console.Write("Please enter a valid file path: ");
filePath = Console.ReadLine();
// create a new instance of the StreamReader class
StreamReader windChillDoc = new StreamReader(@filePath);
// start the read loop
do
{
// read in a line and save it as a string variable
line = windChillDoc.ReadLine();
// is resulting string empty? If not, continue execution
if (line != null)
{
string[] values = line.Split();
temperature = double.Parse(values[0]);
windSpeed = double.Parse(values[1]);
windChillFactor = WindChillCalc(temperature, windSpeed);
Console.WriteLine("\nFor a temperature {0:f2} F{1}", temperature, degreeSymbol);
Console.WriteLine("and a wind velocity {0:f2}mph", windSpeed);
Console.WriteLine("The wind chill factor = {0:f2}{1}\n", windChillFactor, degreeSymbol);
}
} while (line != null);
windChillDoc.Close();
Console.WriteLine("\nReached the end of the file, press enter to exit this program");
Console.ReadLine();
}//End Main()
/// <summary>
/// The WindChillCalc Method
/// Evaluates a wind chill factor at a given temperature and windspeed
/// </summary>
/// <param name="temperature">A given temperature</param>
/// <param name="ws">A given windspeed</param>
/// <returns>The calculated wind chill factor, as a double</returns>
static double WindChillCalc(double temperature, double ws)
{
double wci = 0.0;
wci = FIRST_EQUATION_NUMBER + (SECOND_EQUATION_NUMBER * temperature) - (THIRD_EQUATION_NUMBER * (Math.Pow(ws, EQUATION_EXPONENT))) + (FOURTH_EQUATION_NUMBER * temperature * (Math.Pow(ws, EQUATION_EXPONENT)));
return wci;
}
}//End class Program
</code></pre>
<p>Feel free to tell me what you think of it. </p>
http://stackoverflow.com/questions/1598491/is-it-fair-to-be-held-up-to-mockery-for-preferring-to-run-mvn-clean-install-as1Is it fair to be held up to mockery for preferring to run "mvn clean install" as 2 commands ?Jacques René Mesrine2009-10-21T02:51:21Z2009-11-23T12:51:12Z
<p>One of my team mates was held up for mockery by the team leads for preferring to run maven as:</p>
<pre><code>$ mvn clean
$ mvn install
</code></pre>
<p>The discussion by the team leaders was about efficiency and speed of work & someone brought up the issue that person X is continuing to split </p>
<pre><code>$ mvn clean install
</code></pre>
<p>into 2 separate commands. I know, I know that <strong>life is unfair</strong> but why would something so innocuous be an impediment to project progress. Would this be an issue for you in your team ?</p>
http://stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers7Most efficient code for the first 10000 prime numbers?Niyaz2008-08-03T05:45:21Z2009-11-21T17:00:48Z
<p>I want to print the first 10000 prime numbers.
Can anyone give me the most efficient code for this?
Clarifications:</p>
<ol>
<li>It does not matter if your code is inefficient for n >10000.</li>
<li>The size of the code does not matter.</li>
<li>You cannot just hard code the values in any manner.</li>
</ol>
http://stackoverflow.com/questions/1772604/tips-for-speeding-up-this-code0Tips for speeding up this codehfidgen2009-11-20T19:03:14Z2009-11-21T12:16:27Z
<p>Hiya, </p>
<p>Can anyone suggest tips or alterations to make this code cleaner and faster? This was the only way I could think of doing it on a Friday evening, but I'm sure there must be a more efficient way of doing it...</p>
<p>I know regexs aren't efficient but I can't honestly see how else I can do this, especially if the Postcode data can be anything from:</p>
<p>e1 2be
e1ebe
e10ebe
e10 ebe
ex1 ebe
ex1ebe</p>
<p>and so on...</p>
<p>Thanks a lot for any coding tips,
H</p>
<pre><code>$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Amma Gawd! Someone ate our database!');
mysql_select_db($dbname);
$result = mysql_query("SELECT * FROM `Consumer`
WHERE left(`Postcode`,2) = 'E'
OR left(`Postcode`,1) = 'N'
OR left(`Postcode`,1) = 'W'");
while($row = mysql_fetch_array($result)) {
$email = $row['Email'];
if (preg_match("/^[Ee]{1}[0-9]{2}/",$row['Postcode'])) {
mysql_query("UPDATE `Consumer` SET `CONYES` = '1' WHERE `Email` = '$email'") or die ("Bugger");
$counter = $counter +1;
} elseif (preg_match("/^[Nn]{1}[0-9]{2}/",$row['Postcode'])) {
mysql_query("UPDATE `Consumer` SET `CONYES` = '1' WHERE `Email` = '$email'") or die ("Bugger");
$counter = $counter +1;
} elseif (preg_match("/^[Ww]{1}[0-9]{2}/",$row['Postcode'])) {
mysql_query("UPDATE `Consumer` SET `CONYES` = '1' WHERE `Email` = '$email'") or die ("Bugger");
$counter = $counter +1;
}
}
$result1 = mysql_query("SELECT * FROM `Consumer`
WHERE left(`postcode`,2) = 'BR'
OR left(`postcode`,2) = 'CR'
OR left(`postcode`,2) = 'EC'
OR left(`postcode`,2) = 'EN'
OR left(`postcode`,2) = 'KT'
OR left(`postcode`,2) = 'NW'
OR left(`postcode`,2) = 'RM'
OR left(`postcode`,2) = 'SE'
OR left(`postcode`,2) = 'SM'
OR left(`postcode`,2) = 'SW'
OR left(`postcode`,2) = 'TW'
OR left(`postcode`,2) = 'WC'
OR left(`postcode`,2) = 'BD'
OR left(`postcode`,2) = 'HG'
OR left(`postcode`,2) = 'LS'
OR left(`postcode`,2) = 'WF'
OR left(`postcode`,2) = 'YO'
OR left(`postcode`,2) = 'HD'
OR left(`postcode`,2) = 'HX'");
while($row1 = mysql_fetch_array($result1)) {
$email = $row1['Email'];
mysql_query("UPDATE `Consumer` SET `CONYES` = '1' WHERE `Email` = '$email'") or die ("Bugger");
$counter = $counter +1;
}
echo $counter;
mysql_close($conn);
</code></pre>
http://stackoverflow.com/questions/694102/declaring-multiple-variables-in-javascript2Declaring Multiple Variables in JavaScriptSteve2009-03-29T04:37:25Z2009-11-20T23:23:37Z
<p>Hello,</p>
<p>In JavaScript, it is possible to declare multiple variables like this:</p>
<pre><code>var variable1 = "Hello World!";
var variable2 = "Testing...";
var variable3 = 42;
</code></pre>
<p>...or like this:</p>
<pre><code>var variable1 = "Hello World!",
variable2 = "Testing...",
variable3 = 42;
</code></pre>
<p>Is one method better/faster than the other?</p>
<p>Thanks,</p>
<p>Steve</p>
http://stackoverflow.com/questions/1772203/efficiency-of-sql-like-statement-with-large-number-of-clauses1efficiency of SQL 'LIKE' statement with large number of clausesMatt Grum2009-11-20T17:52:07Z2009-11-20T21:28:12Z
<p>I need to extract information from a text field which can contain one of many values. The SQL looks like:</p>
<pre><code>SELECT fieldname
FROM table
WHERE bigtextfield LIKE '%val1%'
OR bigtextfield LIKE '%val2%'
OR bigtextfield LIKE '%val3%'
.
.
.
OR bigtextfield LIKE '%valn%'
</code></pre>
<p>My question is: how efficient is this when the number of values approaches the hundreds, and possibly thousands? Is there a better way to do this?</p>
<p>One solution would be to create a new table/column with just the values I'm after and doing the following:</p>
<pre><code>SELECT fieldname
FROM othertable
WHERE value IN ('val1', 'val2', 'val3', ... 'valn')
</code></pre>
<p>Which I imagine is a lot more efficient as it only has to do exact string matching. The problem with this is that it will be a lot of work keeping this table up to date.</p>
<p>btw I'm using MS SQL Server 2005.</p>
http://stackoverflow.com/questions/1760729/what-is-the-best-way-to-search-multiple-sources-simultaneously3What is the best way to search multiple sources simultaneously?john ryan2009-11-19T03:36:23Z2009-11-20T01:33:48Z
<p>I'm writing a phonebook search, that will query multiple remote sources but I'm wondering how it's best to approach this task.</p>
<p>The easiest way to do this is to take the query, start a thread per remote source query (limiting max results to say 10), waiting for the results from all threads and aggregating the list into a total of 10 entries and returning them.</p>
<p>BUT...which of the remote source is more important if all sources return at least 10 results, so then I would have to do a search on the search results. While this would yield accurate information it seems inefficient and unlikely to scale up well.</p>
<p>Is there a solution commercial or open source that I could use and extend, or is there a clever algorithm I can use that I've missed?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1766268/a-more-efficient-approach-to-verbal-arithmetic-alphametics3A more efficient approach to Verbal arithmetic / Alphametics?NoCanDo2009-11-19T20:25:58Z2009-11-19T21:37:21Z
<p>Perhaps most of you know the Send + More = Money. Well, I'm currently learning java and one of the exercises is I have to solve HES + THE = BEST.</p>
<p>Now, so far I can/should use if-for-while-do loops, nothing else. Although I'm sure there are different methods to solve it, that's not the point of the exercise I'm going through. I have to be able to use if-for-while-do loops the most efficient way.</p>
<p>My problem? I can't seem to think of an efficient way to solve it! I've come up with this, which solves the puzzle, but is perhaps the worst efficient way to do so:</p>
<pre><code>public class Verbalarithmetics {
public static void main (String args[]) {
// Countint Variables
int index_h = 0;
int index_e = 0;
int index_s = 0;
int index_t = 0;
int index_b = 0;
// Start with h = 1 and increase until the else-if statement is true
for(int h = 1; h <= 9; h++) { // h = 1, because first Symbol can't be zero
index_h++;
// Increase e so long until e equals h
for(int e = 0; e <= 9; e++) {
index_e++;
if (e == h) {
continue;
}
// Increase s so long until s equals h or e
for(int s = 0; s <= 9; s++) {
index_s++;
if (s == h || s == e) {
continue;
}//end if
// Increase t so long until t equals h or e or s.
for(int t = 1; t <= 9; t++) { // t = 1, because 1st Symbol cant be zero
index_t++;
if(t == h || t == e || t == s) {
continue;
}// end if
// Increase b so long until b equals h, e, s or t.
for(int b = 1; b <= 9; b++) { // b = 1, weil das 1. Symbol nicht für eine 0 stehen darf
index_b++;
if (b == h || b == e || b == s || b == t) {
continue;
}// end if
// x = 100*h + 10*e + s
// y = 100*t + 10*h + e
// z = 1000*b + 100*e + 10*s + t
// Check if x+y=z, if true -> Print out Solution, else continue with the upper most loop
else
if (100*h + 10*e + s + 100*t + 10*h + e == 1000*b + 100*e +10*s + t) {
System.out.println("HES + THE = BEST => " + h + e + s + " + " + t + h + e + " = " + b + e + s + t);
System.out.println("With H=" + h + ", E=" + e + ", S=" + s + ", T=" + t + ", und B=" + b + ".");
System.out.println("It took " + index_h +
" Loop-Cycles to find 'h' !");
System.out.println("It took " + index_e +
" Loop-Cycles to find 'e' !");
System.out.println("It took " + index_s +
" Loop-Cycles to find 's' !");
System.out.println("It took " + index_t +
" Loop-Cycles to find 't' !");
System.out.println("It took " + index_b +
" Loop-Cycles to find 'b' !");
System.out.println("This is a total of " + (index_h + index_e + index_s + index_t + index_b) +
" Loop-Cycles");
}// end else if
}//end for
}//end for
}//end for
}//end for
}//end for
}
}
</code></pre>
<p>It takes about 15000 odd loop-cycles in total to solve this puzzle. That's a lot in my opinion. Any pointers, please?</p>
<p>To the editiors: Would you pretty please refrain from adding in "homework" as a tag? This isn't homework. This is self-exercise. What? I can't read a book and do exercises according to it? It has to be homework?...seriously, stop it.</p>
http://stackoverflow.com/questions/1761355/loop-need-help-with-loop-and-efficiency1Loop: Need help with loop and efficiencyDoug2009-11-19T06:49:32Z2009-11-19T16:09:41Z
<p>Currently, I need help with my loop. In each div, I want it to show two sets of FirstName and LastName instead of just one set, but I don't know how can I do that because of the loop. Also, the point of setting different font sizes is to create a visual look which is a funnel like shape. My question is, <strong>how can I add another set of name per div</strong> and is there a better way to code this? can I make my code more efficient?</p>
<p><strong>Edit:</strong> Well, I'm mainly trying to figure out how to add another set of name into the div or I can just use another loop. What I mean when I say add another set of name into the div, I mean I want to add another row of data to the div; I want to have the first two rows of data fetched from MySQL in one div.</p>
<pre><code>$state = 1;
$fontcount = 25;
while ($row = mysql_fetch_assoc($result)) {
if( $fontcount == 25 ) { $fontsize = "250%";
} elseif( $fontcount < 25 && $fontcount >= 22 ) { $fontsize = "210%";
} elseif( $fontcount < 22 && $fontcount >= 19 ) { $fontsize = "170%";
} elseif( $fontcount < 19 && $fontcount >= 16 ) { $fontsize = "150%";
} elseif( $fontcount < 16 && $fontcount >= 13 ) { $fontsize = "130%";
} else { $fontsize = "110%";
}
if( $state%2 == 0 ) {
echo "<div style='background-color: #black; font-size: " . $fontsize . "; text-transform:uppercase; text-align:center;'>";
} else {
echo "<div style='background-color: #blue; font-size: " . $fontsize . "; text-transform:uppercase; text-align:center;'>";
}
echo $row['FirstName'] . " " . ' <span style="font-size: 15px;">$' . $row['LastName'] . "</span>";
echo "</div>";
$state++;
$fontcount--;
}
</code></pre>
http://stackoverflow.com/questions/454337/how-do-cursors-work-in-pythons-db-api3How do cursors work in Python's DB-API?Nicholas Leonard2009-01-17T23:58:21Z2009-11-18T06:38:54Z
<p>Hi again,</p>
<p>I have been using python with RDBMS' (MySQL and PostgreSQL), and I have noticed that I really do not understand how to use a cursor.</p>
<p>Usually, one have his script connect to the DB via a client DB-API (like psycopg2 or MySQLdb):</p>
<pre><code>connection = psycopg2.connect(host='otherhost', etc)
</code></pre>
<p>And then one creates a cursor:</p>
<pre><code>cursor = connection.cursor()
</code></pre>
<p>And then one can issue queries and commands:</p>
<pre><code>cursor.execute("SELECT * FROM etc")
</code></pre>
<p>Now where is the result of the query, I wonder? is it on the server? or a little on my client and a little on my server? And then, if we need to access some results, we fetch 'em:</p>
<pre><code>rows = cursor.fetchone()
</code></pre>
<p>or</p>
<pre><code>rows = cursor.fetchmany()
</code></pre>
<p>Now lets say, I do not retrieve all the rows, and decide to execute another query, what will happen to the previous results? Is their an overhead.</p>
<p>Also, should I create a cursor for every form of command and continuously reuse it for those same commands somehow; I head psycopg2 can somehow optimize commands that are executed many times but with different values, how and is it worth it?</p>
<p>Thx</p>
http://stackoverflow.com/questions/1751334/fast-algorithms-for-computing-the-factorial-1Fast algorithms for computing the factorialThisSuitIsBlackNot2009-11-17T19:55:16Z2009-11-18T01:02:45Z
<p>I found <a href="http://www.luschny.de/math/factorial/FastFactorialFunctions.htm" rel="nofollow">this page</a> describing a number of algorithms for computing the factorial. Unfortunately, the explanations are terse and I don't feel like sifting through line after line of source code to understand the basic principles behind the algorithms.</p>
<p>Can anybody point me to more detailed descriptions of these (or other fast) algorithms for computing the factorial?</p>
<p><strong>Edit:</strong> <a href="http://en.literateprograms.org/Factorials%5Fwith%5Fprime%5Ffactorization%5F(Python)" rel="nofollow">This page</a> describes the method of prime factorization, the technique common to all of the best-performing factorial algorithms. It also contains some nice example code in Python. The author links to <a href="http://numbers.computation.free.fr/Constants/Algorithms/splitting.html" rel="nofollow">a description of binary splitting</a> and references an article in the <em>Journal of Algorithms</em> ("On the Complexity of Calculating Factorials") that looks promising, if I could only get my hands on it.</p>
http://stackoverflow.com/questions/1741545/java-calculate-sha-256-hash-of-large-file-efficiently3Java: Calculate SHA-256 hash of large file efficientlystefita2009-11-16T11:17:02Z2009-11-17T00:07:44Z
<p>I need to calculate a SHA-256 hash of large file (or portion of it). My implementation works fine, but its much slower than the C++'s CryptoPP calculation (25 Min. vs. 10 Min for ~30GB file). What I need is a similar execution time in C++ and Java, so the hashes are ready at almoust the same time. I also tryed the Bouncy Castle implementation, but it gave me the same result. Here is how I calculate the hash:</p>
<pre><code>int buff = 16384;
try {
RandomAccessFile file = new RandomAccessFile("T:\\someLargeFile.m2v", "r");
long startTime = System.nanoTime();
MessageDigest hashSum = MessageDigest.getInstance("SHA-256");
byte[] buffer = new byte[buff];
byte[] partialHash = null;
long read = 0;
// calculate the hash of the hole file for the test
long offset = file.length();
int unitsize;
while (read < offset) {
unitsize = (int) (((offset - read) >= buff) ? buff : (offset - read));
file.read(buffer, 0, unitsize);
hashSum.update(buffer, 0, unitsize);
read += unitsize;
}
file.close();
partialHash = new byte[hashSum.getDigestLength()];
partialHash = hashSum.digest();
long endTime = System.nanoTime();
System.out.println(endTime - startTime);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
</code></pre>
http://stackoverflow.com/questions/1741364/efficient-cartesian-product-algorithm3Efficient Cartesian Product algorithmRobV2009-11-16T10:40:31Z2009-11-16T19:54:03Z
<p>Can somebody please demonstrate for me a more efficient Cartesian product algorithm than the one I am using currently (assuming there is one). I've looked around SO and googled a bit but can't see anything obvious so I could be missing something.</p>
<pre><code>foreach (int i in is) {
foreach (int j in js) {
//Pair i and j
}
}
</code></pre>
<p>This is a highly simplified version of what I do in my code. The two integers are lookup keys which are used to retrieve one/more objects and all the objects from the two lookups are paired together into new objects.</p>
<p>This small block of code in a much larger more complex system becomes a major performance bottleneck as the dataset it's operating over scales. Some of this could likely be mitigated by improving the data structures used to store the objects and the lookups involved but the main issue I feel is still the computation of the Cartesian product itself.</p>
<p><strong>Edit</strong> </p>
<p>So some more background on my specific usage of the algorithm to see if there may be any tricks that I can use in response to Marc's comment. The overall system is a SPARQL query engine which processes SPARQL queries over sets of Graph data, SPARQL is a pattern based language so each query consists of a series of patterns which are matched against the Graph(s). In the case where two subsequent patterns have no common variables (they are disjoint) it is necessary to compute the Cartesian product of the solutions produced by the two patterns to get the set of possible solutions for the overall query. There may be any number of patterns and I may have to compute Cartesian products multiple times which can lead to a fairly exponential expansion in possible solutions if the query is composed of a series of disjoint patterns.</p>
<p>Somehow from the existing answers I doubt whether there any tricks that could apply</p>
http://stackoverflow.com/questions/1684244/efficient-latest-record-query-postgresql0Efficient latest record query PostgresqlSheldon Ross2009-11-05T22:56:32Z2009-11-16T13:32:02Z
<p>Alright I need to do a big query, but I only want the latest records.</p>
<p>For a single entry I would probably do something like</p>
<pre><code>SELECT * FROM table WHERE id = ? ORDER BY date DESC LIMIT 1;
</code></pre>
<p>But I need to pull the latest records for a large (thousands of entries) number of records, but only the latest entry.</p>
<p>Here's what I have but It's not very efficient, I was wondering if there's a better way.</p>
<pre><code>SELECT * FROM table a WHERE ID IN $LIST AND date = (SELECT max(date) FROM table b WHERE b.id = a.id);
</code></pre>
http://stackoverflow.com/questions/1733468/what-is-more-efficient-in-python-new-array-creation-or-in-place-array-manipulatio1What is more efficient in python new array creation or in place array manipulation?Johan2009-11-14T06:19:47Z2009-11-14T14:48:53Z
<p>Say I have an array with a couple hundred elements. I need to iterate of the array and replace one or more items in the array with some other item. Which strategy is more efficient in python in terms of speed (I'm not worried about memory)?</p>
<p>For example: I have an array</p>
<pre><code> my_array = [1,2,3,4,5,6]
</code></pre>
<p>I want to replace the first 3 elements with one element with the value 123.</p>
<p>Option 1 (inline): </p>
<pre><code>my_array = [1,2,3,4,5,6]
my_array.remove(0,3)
my_array.insert(0,123)
</code></pre>
<p>Option2 (new array creation):</p>
<pre><code>my_array = [1,2,3,4,5,6]
my_array = my_array[3:]
my_array.insert(0,123)
</code></pre>
<p>Both of the above will options will give a result of:</p>
<pre><code>>>> [123,4,5,6]
</code></pre>
<p>Any comments would be appreciated. Especially if there is options I have missed.</p>
http://stackoverflow.com/questions/1714171/how-does-a-programmer-work-across-multiple-computers3How does a programmer work across multiple computers?Doug2009-11-11T09:56:47Z2009-11-14T14:43:41Z
<p>I always find myself close to useless without my laptop. It has all the things I need, firefox, notpad++, photoshop, documents, etc... However, occasionally, I like to code on my desktop because it's faster and better, but sometimes it's just impossible unless I transfer the website files to my desktop or keep my FTP updated. I know there are some syncing solutions out there, such as dropbx, but I'm interested in following a good practice and interested in the clever insights of you pros.</p>
<p>Sometimes, I don't even have my laptop and when I have to edit something while I'm at school, I pull out my USB drive. I setup Portable Firefox with plugins FireFTP and FireBug with Notepad++ on my USB stick. This is what I like to call, my web development kit.</p>
<p><strong>Update:</strong> Interesting comments on source control and subversion, it lead me to discover that DreamHost has subversion (I'm going to play with that). Any suggestions on reading material (off or online)? Throw any piece of information at me, I won't know which questions to ask or what questions to ask since I am new to all of this. Thanks in advance guys!</p>
http://stackoverflow.com/questions/1453718/ti-dsp-programming-is-c-fast-enough-or-do-i-need-an-assembler3TI DSP programming - is C fast enough or do I need an assembler? Michal Czardybon2009-09-21T09:56:23Z2009-11-14T09:18:15Z
<p>I am going to write some image processing programs for Texas Instruments DaVinci platform. There are tools appropriate for programming in the C language, but I wonder if it is really possible to take full advantage of the DSP processor without resorting to an assembly language. Do you know about any comparisons of speed between programs written in C and in assembler on this DSP platform?</p>
http://stackoverflow.com/questions/1279273/writing-efficient-css4Writing Efficient CSSIan Storm Taylor2009-08-14T18:00:00Z2009-11-13T05:02:12Z
<p>Sorry if this is waaayyy to basic of a question to be asked here. But here goes...</p>
<p>Ok so in another question something was being discussed, and this link was mentioned:</p>
<p><a href="https://developer.mozilla.org/en/Writing%5FEfficient%5FCSS" rel="nofollow">https://developer.mozilla.org/en/Writing_Efficient_CSS</a></p>
<p>In that article, they say some things I didn't know, but before I ask about them, I should ask this... Does that apply to CSS interpreted by Firefox? Forgive my noobness, but I wasn't sure what they meant by Mozilla UI. (don't hurt me!)</p>
<p>If it does apply, when they say:</p>
<blockquote>
<p>Avoid the descendant selector!</p>
<p>The descendant selector is the most
expensive selector in CSS. It is
dreadfully expensive, especially if a
rule using the selector is in the tag
or universal category. Frequently what
is really desired is the child
selector. The use of the descendant
selector is banned in UI CSS without
the explicit approval of your skin's
module owner.</p>
<pre><code>* BAD - treehead treerow treecell { }
* BETTER, BUT STILL BAD (see next guideline) - treehead > treerow >
</code></pre>
<p>treecell { }</p>
</blockquote>
<p>The descendant selector is just a space? And then what would the difference be between child and descendant? Child is an element inside another, but isn't that the same as descendant? OH! Shit as I'm writing I think I might have figured it out. A descendant could be a child/grandchild/great-grandchild/etc? And child is only one deep?</p>
<p>Sorry again for the stupid level of my question... just wondering, because I have been constantly using descendants in my CSS for my site. But yeah, if this isn't about Firefox then this whole question is pointless...</p>
<p>If its not about Firefox, does anyone have a link to an article explaining efficiency for Firefox or Browsers in general?</p>
http://stackoverflow.com/questions/1724697/packet-detection-using-regex0Packet detection using regexCSharperWithJava2009-11-12T19:22:28Z2009-11-12T19:29:42Z
<p>I'm new to regular expressions, and I need to write a set of regular expressions that match different data packet formats.</p>
<p>My problem is, usually I only need to look for the start and ending parts of the packet to distinguish between them, the data in between is irrelevant.</p>
<p><strong>What's the most efficient way to ignore the data between the start and end?</strong></p>
<p>Here's a simple example.
The packet I'm looking for starts with $CH; and ends with #</p>
<p>Currently my regex is <code>\$CH;.*?#</code></p>
<p>It's the .*? I'm worried about. Is there a better (or more efficient) way to accept any character between the packet header and ending character?</p>
<p>Also, some of the packets have \n chars in the data, so using . won't work at all if it means [^\n].</p>
<p>I've also considered <code>[^\x00]*?</code> to detect any characters since null is never used in the data.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1720055/can-my-code-be-more-efficient0Can my code be more efficient?Doug2009-11-12T05:17:39Z2009-11-12T05:30:18Z
<p>I have to put my database's data in this format (values will differ, obviously), I think it's called an associative array (I'm horrible with terminology).</p>
<pre><code>$values=array(
"Jan" => 110,
"Feb" => 130,
"Mar" => 215,
"Apr" => 81,
"May" => 310,
"Jun" => 110,
"Jul" => 190,
"Aug" => 175,
"Sep" => 390,
"Oct" => 286,
"Nov" => 150,
"Dec" => 196
);
</code></pre>
<p>Here's what I developed:</p>
<pre><code> $sql = "SELECT MONTH(AddDate) AS Date, column_name FROM table ORDER BY AddDate ASC";
$res = mysql_query($sql) or die(mysql_error());
$prev_date = null;
$values=array();
while ( $row = mysql_fetch_assoc($res) ) {
if ( $row['Date'] != $prev_date) {
$month = $row['Date'];
$sql = "SELECT count(MONTH(AddDate)) AS EntryAmount FROM `table` WHERE MONTH(AddDate)=$month ";
$countResults = mysql_query($sql) or die(mysql_error());
if( $entryAmount = mysql_fetch_array($countResults) ) {
$values[$row['Date']] = $entryAmount['EntryAmount'];
}
$prev_date = $row['Date'];
}
}
</code></pre>
<p>Output:</p>
<pre><code>Array ( [9] => 999 [10] => 986 [11] => 264 )
</code></pre>
http://stackoverflow.com/questions/1712444/loop-and-mysql-help0Loop and MySQL help!Doug2009-11-11T01:32:57Z2009-11-12T05:15:32Z
<p>Okay, basically... i am trying to store the dates and month name from my database in this format. I am aiming store the month and then count the entries in that month and then store the count. This is my loop, but I have trouble formatting the array properly. </p>
<pre><code>while ( $row = mysql_fetch_assoc($res) ) {
if ($row['Date'] != $prev_date) {
$values=array(
$row['Date'] => $count,
);
$prev_date = $row['Date'];
}
$count++;
}
print_f($values);
</code></pre>
<p>You can see that I will always overwrite my previous array and I am not really adding entries into the array. I couldn't figure out how to do it. I'm basically trying to see the number of entries per month.</p>
<p>OLD Update: Currently learning the MYSQL thing that one commenter mentioned. I'll update when I get it.</p>
http://stackoverflow.com/questions/850878/does-setting-java-objects-to-null-do-anything-anymore9Does setting Java objects to null do anything anymore?sal2009-05-12T02:20:49Z2009-11-11T19:29:03Z
<p>I was browsing some old books and found a copy of "Practical Java" by Peter Hagger. In the performance section, there is a recommendation to set object references to <code>null</code> when no longer needed. </p>
<p>In Java, does setting object references to <code>null</code> improve performance or garbage collection efficiency? If so, in what cases is this an issue? Container classes? Object composition? Anonymous inner classes?</p>
<p>I see this in code pretty often. Is this now obsolete programming advice or is it still useful? </p>
http://stackoverflow.com/questions/1714327/when-developing-a-website0When developing a website...Doug2009-11-11T10:31:22Z2009-11-11T10:46:43Z
<p>Very often, I just create a new folder and test things out in there. I use remote upload and then edit and refresh the page to see if it works. Now, one time when I was asked to work on a friend's website, he told me to change the IP for his domain in my HOSTS windows file. He had a clone of his website on another server, so I could edit everything and still visually see my work. Is it ideal to work like this? What's a good strategy for programming when developing websites? e.g. Back up before you begin working, working on the files in a separate directory, etc...</p>
<p>I know everyone has their own style and I understand there's no right way. I'm simply just interested in everyone's common practices and I hope to pick up a few tips here and there and incorporate it to my own style. </p>
http://stackoverflow.com/questions/1204255/eficient-logging-of-stdin-with-rsyslog0Eficient logging of stdin with rsyslogAmos Shapira2009-07-30T03:11:15Z2009-11-06T01:00:01Z
<p>Hello,</p>
<p>Our environment: CentOS 5, which comes with Apache 2.2 and rsyslog 2.0.6</p>
<p>In order to send Apache 2.2 error log we followed instructions found on the here: <a href="http://wiki.rsyslog.com/index.php/Working_Apache_and_Rsyslog_configuration" rel="nofollow">http://wiki.rsyslog.com/index.php/Working_Apache_and_Rsyslog_configuration</a></p>
<p>It works, but the included perl script is very inefficient - it takes huge part of the system resources and from looking at the Sys::Syslog::syslog subroutine I can imagine why - it does lots of parameter parsing and moving around before it actually sends the message.</p>
<p>Is there some efficient C/C++ program to replace this script? It seems to be a 5-liner but I'd rather not re-invent the wheel.</p>
<p>Other solutions to efficiently send apache ERROR logs to syslog would also be welcome.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1680615/bitwise-xoring-and-shifting-of-integer-arrays0Bitwise XORing and shifting of integer arraysSerafeim2009-11-05T13:32:54Z2009-11-05T19:12:34Z
<p>Suppose a bit sequence of size M, and another bit sequence of size N, with M >> N. Both M and N can be saved inside integer arrays: If N has a length of 30 then an array with only one integer will be needed, but if N has a length of 300 then an array with 10 integers will be needed to store it. </p>
<p>What I am trying to do is to shift N inside M, and for each possible position k inside M to find the number of differences (by XORing) between N and M(k). If M has 10000 bits and N has 100 bits then there are 10000-100=9900 positions in which an XOR comparison will be performed.</p>
<p>Are you aware of a library that could do that or maybe propose an algorithm ? I know that it can be done with many other ways however I believe that the fastest possible method is the one proposed here. If you can think of a faster way then I'm open to suggestions ! </p>
<p>I'd prefer something in C or C++ but other languages, even pseudocode are also acceptable.</p>
<p>Thanks in advance.</p>