User pablo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T09:15:20Z http://stackoverflow.com/feeds/user/72456 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/599846/how-to-register-a-service-with-mono-zeroconf 1 How to register a service with Mono.ZeroConf? pablo 2009-03-01T13:47:54Z 2009-11-29T21:54:29Z <p>Hi,</p> <p>I'm trying to test the ZeroConf sample at <a href="http://www.mono-project.com/Mono.Zeroconf" rel="nofollow">http://www.mono-project.com/Mono.Zeroconf</a>.</p> <p>I'm running OpenSuse 11 and Mono 2.2.</p> <p>My server code is:</p> <pre><code>using System; using Mono.Zeroconf; namespace zeroconftestserver { class MainClass { public static void Main(string[] args) { RegisterService service = new RegisterService (); service.Name = "test server"; service.RegType = "_daap._tcp"; service.ReplyDomain = "local."; service.Port = 6060; // TxtRecords are optional TxtRecord txt_record = new TxtRecord (); txt_record.Add ("Password", "false"); service.TxtRecord = txt_record; service.Register(); Console.WriteLine("Service registered!"); Console.ReadLine(); } } } </code></pre> <p>But I can't find my registered service with the sample client browser code nor with mzclient.</p> <p>Thanks!</p> http://stackoverflow.com/questions/980033/sql-server-2008-express-connection-problems 0 SQL Server 2008 Express connection problems pablo 2009-06-11T08:49:29Z 2009-11-10T00:00:01Z <p>Hi,</p> <p>I'm testing a C# application on SQL Server 2008. It used to work perfectly on 2005 Express edition, but now it seems to take ages to open connections to 2008 Express (default install, using sharedmem protocol).</p> <p>Also, repeteadly I got errors of connection problems.</p> <p>Any idea?</p> http://stackoverflow.com/questions/1634231/c-hashtable-vs-c-hashmap 0 C# Hashtable vs c++ hash_map pablo 2009-10-27T23:15:39Z 2009-10-27T23:35:23Z <p>Hi,</p> <p>I'm comparing the following code in C++ and C# and C# (Mono 2.4) seems to be faster. Is there anything wrong with the C++ code?</p> <pre><code> #include &lt;map&gt; #include &lt;string&gt; #include &lt;iostream&gt; #include &lt;ext/hash_map&gt; #include &lt;boost/any.hpp&gt; int main() { //std::map&lt;long, long&gt; m; // hash_map is a little bit faster __gnu_cxx::hash_map&lt;long, long&gt; m; for( long i = 0; i &lt; 1000000; ++i ) { m[i] = i; } } </code></pre> <p>And C#</p> <pre><code> using System; using System.Collections; public int Main() { Hashtable m = new Hashtable(); for( long i = 0; i &lt; 1000000; ++i ) { m[i] = i; } } </code></pre> <p>C# code is actually twice as fast on the same machine.</p> <pre><code>$ time ./a.out real 0m1.028s user 0m0.986s sys 0m0.041s $ time mono test.exe real 0m0.603s user 0m0.732s sys 0m0.090s </code></pre> http://stackoverflow.com/questions/1180214/performance-creating-multiple-small-files 3 Performance creating multiple small files pablo 2009-07-24T21:21:37Z 2009-07-24T22:01:14Z <p>Hi,</p> <p>I need a test app that will create a big number of small files on disk as faster as possible.</p> <p>Will asynch ops help creating files or just writing them? Is there a way to speed up the whole process (writing on a single file is not possible)</p> http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/1095127#1095127 1 Answer by pablo for What Are Some Good .NET Profilers? pablo 2009-07-07T22:07:10Z 2009-07-07T22:07:10Z <p>The latest version of ANTS memory profiler (I think it's 5) simply rocks!!! I was haunting a leak using WinDbg and SOS since it proved to be the best way before, then I tried ANTS and I got it in minutes. Really a wonderful piece of software.</p> http://stackoverflow.com/questions/1074388/cross-platform-source-control/1077296#1077296 1 Answer by pablo for Cross-platform source control? pablo 2009-07-03T00:03:51Z 2009-07-03T00:03:51Z <p>Try <a href="http://www.plasticscm.com" rel="nofollow">Plastic SCM</a> working on Linux, Mac and Windows. GUI based replication, branch explorer, efficient branching and merging (merge tracking included, move and renames too), ACL based security...</p> <p><img src="http://www.plasticscm.com/screenshots/gui27/multiplatform/mp-mac02.png" alt="alt text" /> <img src="http://www.plasticscm.com/screenshots/gui27/multiplatform/mp-linux02.png" alt="alt text" /></p> http://stackoverflow.com/questions/1048982/good-version-control-software-for-delphi-2009/1064796#1064796 0 Answer by pablo for good version control software for Delphi 2009 pablo 2009-06-30T16:54:16Z 2009-06-30T16:54:16Z <p>Try <a href="http://www.plasticscm.com" rel="nofollow">Plastic SCM</a> together with SourceConneXion integration.</p> <p>Take a look at the following posts here:</p> <ul> <li><a href="http://codicesoftware.blogspot.com/2008/06/branching-and-merging-with-delphi-part.html" rel="nofollow">http://codicesoftware.blogspot.com/2008/06/branching-and-merging-with-delphi-part.html</a></li> <li><a href="http://codicesoftware.blogspot.com/2008/06/branching-and-merging-with-delphi-part%5F02.html" rel="nofollow">http://codicesoftware.blogspot.com/2008/06/branching-and-merging-with-delphi-part_02.html</a></li> </ul> <p>Actually it is a very strong combination since Delphi is probably the greatest IDE/language combination for most tasks, and Plastic the strongest for parallel development.</p> http://stackoverflow.com/questions/991788/what-source-control-systems-have-file-level-permissions/1064783#1064783 0 Answer by pablo for What source control systems have file level permissions? pablo 2009-06-30T16:50:46Z 2009-06-30T16:50:46Z <p>Take a look at <a href="http://www.plasticscm.com" rel="nofollow">Plastic SCM</a> and it's ACL model.</p> http://stackoverflow.com/questions/1061309/net-clr-memory-time-in-gc 1 .NET CLR Memory\% Time in GC pablo 2009-06-30T01:06:45Z 2009-06-30T03:53:16Z <p>Hi,</p> <p>I'm testing an app that reads thousands of small objects and sends then back to the client through remoting.</p> <p>Using ProcessExplorer from SysInternals I see the ".NET CLR Memory\% Time in GC" is bigger than 50% under heavy load.</p> <ul> <li><p>Does it mean 50% or even more of the time is being spent on the GC?</p></li> <li><p>If so, how can I improve performance? An obvious answer is: not creating so many objects but, how can I do that? Would "structs" work better?</p></li> </ul> <p>Thanks</p> http://stackoverflow.com/questions/1061317/are-multithreaded-apps-bound-to-a-single-core 3 Are multithreaded apps bound to a single core? pablo 2009-06-30T01:10:37Z 2009-06-30T01:30:57Z <p>Hi,</p> <p>I'm running a .NET remoting application built using .NET 2.0. It is a console app, although I removed the [STAThread] on Main.</p> <p>The TCP channel I'm using uses a ThreadPool in the background.</p> <p>I've been reported that when running on a dual core box, under heay load, the application never uses more than 50% of the CPU (although I've seen it at 70% or more on a quad core).</p> <p>Is there any restriction in terms of multi-core for remoting apps or ThreadPools?</p> <p>Is it needed to change something in order to make a multithreaded app run on several cores?</p> <p>Thanks</p> http://stackoverflow.com/questions/1051781/database-or-flat-file-for-600k-records 2 Database or flat file for 600K records? pablo 2009-06-27T00:18:30Z 2009-06-27T16:17:45Z <p>Hi,</p> <p>I'm writing a C# application which needs to insert about 600K records into a database at a certain point in time. </p> <p>They are very simple records: just 3 longs.</p> <p>I'm using params to set up the command, and then loop through the data in memory to make the inserts, assigning the values to the command parameter's at each loop and running command.ExecuteNonQuery()</p> <p>It takes about 50 seconds to finish on SqlServer, and it's even slower on MySql while inserting the same data on a flat file only takes a few miliseconds.</p> <p>Am I doing something wrong or the database simply too slow?</p> http://stackoverflow.com/questions/1051761/c-fast-hash-calculation 1 c# fast hash calculation pablo 2009-06-27T00:06:25Z 2009-06-27T05:25:21Z <p>Hi,</p> <p>I'm looking for a c# wrapper to a native MD5 or SHA1 library to improve hash calculation performance.</p> <p>Previously I switched SharpZipLib to zlib and got more than 2x performance boost. (ok, you've to take care you've the right zlib.so or zlib.dll depending on the OS and hardware, but it pays off).</p> <p>Will it be worth for MD5 or SHA1 or both .NET and Mono rely on a native implementation already?</p> <p>(Edited) Also: in case I've to stick to the MD5CryptoServiceProvider, is there a way in which I can calculate a hash of a file while I'm reading it? I mean, send bytes in chunks but still calculate the whole hash?</p> http://stackoverflow.com/questions/69497/what-is-a-good-non-distributed-alternative-to-subversion-that-has-excellent-bra/1041409#1041409 0 Answer by pablo for What is a good, non-distributed, alternative to subversion that has excellent branching and merging support? pablo 2009-06-24T22:55:46Z 2009-06-24T22:55:46Z <p><a href="http://www.plasticscm.com" rel="nofollow">Plastic SCM</a> is all about branching and merging... made easy. Check its GUI and compare with the other alternatives.</p> http://stackoverflow.com/questions/16073/alternatives-to-visual-sourcesafe-that-integrate-with-visual-studio/1029355#1029355 0 Answer by pablo for Alternatives to Visual Sourcesafe that integrate with Visual Studio pablo 2009-06-22T20:58:25Z 2009-06-22T20:58:25Z <p>Go for <a href="http://www.plasticscm.com" rel="nofollow">Plastic SCM</a>. It's very easy to use, it's one of the strongests using branches and one of the few enabling true distributed development from withing VStudio. Great refactor support (move tracking, merge tracking and so on), try moving files from VStudio and so on, and it's free for open source.</p> http://stackoverflow.com/questions/829220/implement-a-faster-svn-cat-with-svnclient 2 Implement a faster svn cat with SvnClient pablo 2009-05-06T11:54:08Z 2009-06-09T08:39:09Z <p>I'm looking for a faster way to retrieve files from SVN than svn cat in .NET.</p> <p>Currently I'm running a svn cat process for each revision, but it's extremely slow.</p> <p>Then I've tried with SvnClient:</p> <pre><code> Stream st = Console.OpenStandardOutput(); SvnWriteArgs wargs = new SvnWriteArgs(); for (int i = 3140; i &lt; 3155; ++i) { wargs.Revision = i; client.Write(new SvnUriTarget("http://filezilla.svn.sourceforge.net/svnroot/filezilla/FileZilla3/trunk/README"), st, wargs); } st.Flush(); </code></pre> <p>But each iteration is even slower than svn cat.</p> <p>Is there a way in SvnClient to "reuse" a previously opened connection to the SVN server so that a multiple cat operation can be run faster?</p> http://stackoverflow.com/questions/882223/does-firebird-need-manual-reindexing 4 Does Firebird need manual reindexing? pablo 2009-05-19T11:38:10Z 2009-05-19T11:57:12Z <p>I use both Firebird embedded and Firebird Server, and from time to time I need to reindex the tables using a procedure like the following:</p> <pre><code>CREATE PROCEDURE MAINTENANCE_SELECTIVITY ASDECLARE VARIABLE S VARCHAR(200); BEGIN FOR select RDB$INDEX_NAME FROM RDB$INDICES INTO :S DO BEGIN S = 'SET statistics INDEX ' || s || ';'; EXECUTE STATEMENT :s; END SUSPEND; END </code></pre> <p>I guess this is normal using embedded, but is it really needed using a server? Is there a way to configure the server to do it automatically when required or periodically?</p> http://stackoverflow.com/questions/628430/version-control-approaches-in-scrum/809458#809458 2 Answer by pablo for Version control approaches in Scrum pablo 2009-04-30T22:39:55Z 2009-05-01T17:14:30Z <p>That's a very interesting topic actually.</p> <p>We always enforce branch per task creation, in fact, each task (not story, but actual tasks as decomposed after the scrum planning meeting) will have at least one associated branch.</p> <p>You can see how it looks like at the following diagram: <img src="http://farm4.static.flickr.com/3354/3439112851%5F133242de6f%5Fd.jpg" alt="alt text" /></p> <p>This makes things like encouraging peer reviews very easy, since the team can checked what was modified on a task (branch), even when developers decided to make many intermediate commits (which is a very good practice!)</p> <p>There's a number of links below that can be helpful:</p> <ol> <li><a href="http://codicesoftware.blogspot.com/2007/04/isolation-branch-per-task-detailed.html" rel="nofollow">Task per branch detailed</a></li> <li><a href="http://www.codicesoftware.com/xpgoagile.aspx" rel="nofollow">Go Agile in 4 steps!</a></li> <li>And a <a href="http://www.plasticscm.com/demos/associatingbranchestotasks-explained/associatingbranchestotasks-explained.html" rel="nofollow">screencast about it here</a>.</li> </ol> http://stackoverflow.com/questions/257926/how-to-blend-cmmi-and-scrum/808800#808800 0 Answer by pablo for How to blend CMMI and Scrum? pablo 2009-04-30T20:11:41Z 2009-04-30T20:11:41Z <p>He're is my experience doing this, although only for CMMi L2: <a href="http://www.ddj.com/architect/201202684" rel="nofollow">DDJ's link</a></p> http://stackoverflow.com/questions/802504/are-there-any-merge-tools-for-source-control-that-understand-code/808789#808789 2 Answer by pablo for Are there any merge tools for source control that understand code? pablo 2009-04-30T20:07:00Z 2009-04-30T20:07:00Z <p>Our approach with Plastic SCM is still far from being "complete", but it's already released and can help in this kind of situations. Take a look at <a href="http://codicesoftware.blogspot.com/2008/08/xmerge-tool-to-handle-refactors.html" rel="nofollow">Xmerge</a>. Of course, feedback will be more than welcome and will grant some free licenses ;-)</p> http://stackoverflow.com/questions/799187/dvcs-with-a-windows-central-repository/801238#801238 -2 Answer by pablo for DVCS with a Windows central repository pablo 2009-04-29T07:19:36Z 2009-04-29T07:19:36Z <p>If you're looking for:</p> <ol> <li>Distributed development support</li> <li>Run Windows servers seamlessly</li> <li>And a great GUI</li> </ol> <p>You're exactly describing <a href="http://www.plasticscm.com/xpproducts.aspx" rel="nofollow">Plastic SCM</a></p> http://stackoverflow.com/questions/800967/enforcing-source-control/801038#801038 1 Answer by pablo for Enforcing source control pablo 2009-04-29T05:49:25Z 2009-04-29T05:49:25Z <p>If you meet regularly with the team (like daily SCRUMs) and use some sort of tool such us <a href="http://www.atlassian.com/software/jira/" rel="nofollow">Jira</a> or Mantis or <a href="http://www.rallydev.com/" rel="nofollow">Rally</a>, and you set up a trigger in your SVN system to link each commit to a task (or even better, a branch with a task, but unfortunately this is not that good with SVN) you can easily check if developers have checked in code to this task. Most of the integrations with issue/bug tracking system create an attach with the files modified in the commit, so it will be really easy to check.</p> <p>This is not forcing, but it will help you enforce that all team follows the rule mentioned before: checkin early, checkin often.</p> http://stackoverflow.com/questions/449642/handling-multiple-changesets-in-source-control-systems/796912#796912 0 Answer by pablo for Handling multiple changesets in source control systems pablo 2009-04-28T09:05:05Z 2009-04-28T09:05:05Z <p>I agree with <a href="http://stackoverflow.com/questions/449642/handling-multiple-changesets-in-source-control-systems/632588#632588">ChrisF</a>: branching would be the most natural solution for this.</p> <p>I've used Perforce for a while, and it's true it is not as strong in branching as other SCMs out there, but it can be done.</p> <p>The trick is really simple: create a branch for each task you're working on (the god-ol <a href="http://www.cmcrossroads.com/bradapp/acme/branching/branch-creation.html#BranchPerTask" rel="nofollow">branch per task pattern</a>), switch to it. What if you need to fix something else? Easy, just switch to a different branch after checking in everything (with some scms you don't even need to checkin) fix it and come back later to your original "email" branch.</p> http://stackoverflow.com/questions/796627/is-netpeertcpbinding-available-on-mono 0 Is NetPeerTcpBinding available on Mono? pablo 2009-04-28T07:27:34Z 2009-04-28T08:31:53Z <p>I'd like to know whether Mono's implementation of WCF already implements NetPeerTcpBinding.</p> <p>Anyone is using it? Some examples?</p> http://stackoverflow.com/questions/796005/how-to-get-started-with-mono-in-linux-for-a-beginner/796802#796802 1 Answer by pablo for How to get started with Mono in Linux for a beginner? pablo 2009-04-28T08:26:50Z 2009-04-28T08:26:50Z <p>There are a few interesting books on Mono, although they're probably a little bit old. Still, probably it's worth to grab one and take a look in order to start up.</p> <ol> <li><a href="http://rads.stackoverflow.com/amzn/click/1590595483" rel="nofollow">Practical Mono</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0596007922" rel="nofollow">Mono: A developer's notebook</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/1590593308" rel="nofollow">Cross-Platform .NET development</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0672325799" rel="nofollow">Mono Kick-start</a></li> </ol> <p>Then, I'd install latest Mono (2.4) on a Linux box (OpenSuse is the one they use, so it will always go smoothly for development, but we also use Ubuntu internally) and start playing around with the compiler, MonoDevelop (which is quite good since 2.0) and so on.</p> <p>The only tough point will be writing GUI applications, although my team make extensively use of MWF on different Unix flavors. But everything else will go as you'd expect. I'm specially happy with how great remoting works, for instance.</p> <p>If you're used to Linux then it will be much easier, otherwise I'd also recommend you getting used to it following some tutorial.</p> <p>Remember tools such us NUnit and NAnt will be also available, so you can start writing your code on both Windows and Linux and testing and compiling on both platforms.</p> http://stackoverflow.com/questions/478368/free-distributed-source-control-with-visual-studio-integration/796582#796582 1 Answer by pablo for Free distributed source control with visual studio integration? pablo 2009-04-28T07:14:44Z 2009-04-28T07:20:22Z <p>Jared,</p> <p>If you need distributed and VStudio integration, then you're talking about <a href="http://www.plasticscm.com" rel="nofollow">Plastic SCM</a></p> <p>The whole GUI is integrated with VStudio 2005 and higher, and SCC integration is available starting with VStudio 6.</p> <p>It directly supports renaming and moving files from VStudio too.</p> <p>Plastic SCM is free for students, for open source projects and most likely you can get some free licenses for personal projects too.</p> http://stackoverflow.com/questions/781826/how-to-implement-a-multi-platform-multimedia-application/795589#795589 0 Answer by pablo for How to implement a multi-platform multimedia application? pablo 2009-04-27T22:48:39Z 2009-04-27T22:48:39Z <p>We use WinForms for <a href="http://www.plasticscm.com" rel="nofollow">Plastic</a></p> http://stackoverflow.com/questions/34975/branching-strategies/795566#795566 0 Answer by pablo for Branching Strategies pablo 2009-04-27T22:41:35Z 2009-04-27T22:41:35Z <ol> <li>One branch for the active development (/main or master, depending on the jargon)</li> <li>One branch for each maintenance release -> it will receive only really small fixes, while all major development goes to /main</li> <li>One branch for each new task: create a new branch to work on every new entry on your Bugzilla/Jira/Rally. Commit often, self document the change using inch pebble checkins, and merge it back to its "parent" branch only when it's finished and well tested.</li> </ol> http://stackoverflow.com/questions/767185/which-scm-tool-supports-these-features/795546#795546 1 Answer by pablo for Which SCM tool supports these features? pablo 2009-04-27T22:34:49Z 2009-04-27T22:34:49Z <p>Any modern SCM will match your requirements.</p> <p>Give a try to <a href="http://www.plasticscm.com" rel="nofollow">Plastic SCM</a> (except for Maven, I think)</p> http://stackoverflow.com/questions/8747/learning-version-control-and-learning-it-well/795537#795537 0 Answer by pablo for Learning Version Control, and learning it well pablo 2009-04-27T22:29:53Z 2009-04-27T22:29:53Z <p>IMHO, this is <a href="http://www.scmpatterns.com/book/" rel="nofollow">THE book</a>: Berczuk's book on SCM patterns</p> http://stackoverflow.com/questions/237/distributed-source-control-options/795526#795526 0 Answer by pablo for Distributed source control options pablo 2009-04-27T22:25:28Z 2009-04-27T22:25:28Z <p><a href="http://www.plasticscm.com" rel="nofollow">Plastic SCM</a> is distributed and 100% usable on windows. You can distribute branches back and forth using the GUI, it has ACLs, good branching, nice graphics...</p> <p>It's free for students, open source projects and hobbyists.</p> http://stackoverflow.com/questions/1634231/c-hashtable-vs-c-hashmap Comment by pablo on C# Hashtable vs c++ hash_map pablo 2009-10-27T23:52:28Z 2009-10-27T23:52:28Z That's true joshperry. In fact, I should measure just the code INSIDE the main method instead of everything. http://stackoverflow.com/questions/1634231/c-hashtable-vs-c-hashmap/1634331#1634331 Comment by pablo on C# Hashtable vs c++ hash_map pablo 2009-10-27T23:39:49Z 2009-10-27T23:39:49Z ooooops!!!! It did the trick: real 0m0.207s user 0m0.162s sys 0m0.044s http://stackoverflow.com/questions/1634231/c-hashtable-vs-c-hashmap/1634263#1634263 Comment by pablo on C# Hashtable vs c++ hash_map pablo 2009-10-27T23:27:38Z 2009-10-27T23:27:38Z I'd like to know how much faster Boost is. Didn't enable any optimizations for Mono nor C++. Not sure about the table sizes, I'll have to check. Considering other hashtables is exactly what I'd like to do. Yep, but even real+user is better for Mono. http://stackoverflow.com/questions/1634231/c-hashtable-vs-c-hashmap Comment by pablo on C# Hashtable vs c++ hash_map pablo 2009-10-27T23:24:55Z 2009-10-27T23:24:55Z $ uname -a Linux juno 2.6.11-1.1369_FC4smp #1 SMP Thu Jun 2 23:08:39 EDT 2005 i686 i686 i386 GNU/Linux $ cat /proc/cpuinfo | grep bogo bogomips : 5931.00 bogomips : 5980.16 http://stackoverflow.com/questions/1634231/c-hashtable-vs-c-hashmap Comment by pablo on C# Hashtable vs c++ hash_map pablo 2009-10-27T23:23:26Z 2009-10-27T23:23:26Z Hi. I just compiled with gcc test.cc. No switches, nothing. Didn't try with the default sizes either, but the Mono/C# default size is not very big either. Didn't try Boost.Unordered. The old fedora I'm using doesn't seem to have it. I'll look at a newer box (ok, or I'll install it :-P). http://stackoverflow.com/questions/1061309/net-clr-memory-time-in-gc/1061643#1061643 Comment by pablo on .NET CLR Memory\% Time in GC pablo 2009-06-30T08:50:38Z 2009-06-30T08:50:38Z I will carefully read the article. http://stackoverflow.com/questions/1051781/database-or-flat-file-for-600k-records/1052627#1052627 Comment by pablo on Database or flat file for 600K records? pablo 2009-06-27T12:39:20Z 2009-06-27T12:39:20Z Hi, what do you mean by &quot;You must batch commits and make sure your log is on a fast array of spindles&quot;? I'm inserting them all inside a transaction, and yes, it would be great to reach 50k records per second but, do I need to use a Batch Mode for that? http://stackoverflow.com/questions/1051761/c-fast-hash-calculation/1051777#1051777 Comment by pablo on c# fast hash calculation pablo 2009-06-27T00:48:22Z 2009-06-27T00:48:22Z Sam, you're right, the problem must be somewhere else. One question, though: Is there a way to hash in chunks? I need to read the file and also to hash it, can I do it in only one pass? http://stackoverflow.com/questions/1051781/database-or-flat-file-for-600k-records/1051837#1051837 Comment by pablo on Database or flat file for 600K records? pablo 2009-06-27T00:46:08Z 2009-06-27T00:46:08Z I've seen it on a manual test (actually copying pasting records on an Access table), how can it be so dammed fast? http://stackoverflow.com/questions/1051781/database-or-flat-file-for-600k-records/1051807#1051807 Comment by pablo on Database or flat file for 600K records? pablo 2009-06-27T00:44:31Z 2009-06-27T00:44:31Z It dramatically improves things up in MySql, but is still not the fastest thing around: and old test I did with 400K records needed 77sec to execute inserting 1 by 1, and 14sec when done in &quot;batch mode&quot;, but then you also have to check you don't pass the mysql package limit (you can tune it on my.cnf). But you can't do that with SqlServer 2005, can you? http://stackoverflow.com/questions/1051781/database-or-flat-file-for-600k-records Comment by pablo on Database or flat file for 600K records? pablo 2009-06-27T00:37:09Z 2009-06-27T00:37:09Z Yes, I can tune the code for different backends if required http://stackoverflow.com/questions/1051781/database-or-flat-file-for-600k-records/1051805#1051805 Comment by pablo on Database or flat file for 600K records? pablo 2009-06-27T00:36:12Z 2009-06-27T00:36:12Z Fortunately I'm not using triggers :-P. http://stackoverflow.com/questions/1051781/database-or-flat-file-for-600k-records/1051798#1051798 Comment by pablo on Database or flat file for 600K records? pablo 2009-06-27T00:35:16Z 2009-06-27T00:35:16Z Unfortunately source data is not coming from a query on an old database http://stackoverflow.com/questions/1051761/c-fast-hash-calculation/1051777#1051777 Comment by pablo on c# fast hash calculation pablo 2009-06-27T00:33:50Z 2009-06-27T00:33:50Z Fortunately I checked I'm using the unmanaged one: MD5CryptoServiceProvider. Loved your profiling example! http://stackoverflow.com/questions/1051761/c-fast-hash-calculation Comment by pablo on c# fast hash calculation pablo 2009-06-27T00:32:08Z 2009-06-27T00:32:08Z @jrista, I'm not so concerned about security since what I'm doing is hashing file contents to quickly check if they changed or not. Hashing and reading in a single pass would might help too.