User Luca Martinetti - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T23:43:46Zhttp://stackoverflow.com/feeds/user/43617http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/505891/f-how-to-abstract-console-readline-as-string-seq2F# how to abstract Console.ReadLine() as string seqLuca Martinetti2009-02-03T03:04:28Z2009-11-24T01:59:38Z
<p>Hi,</p>
<p>I want to write a function to abstract Console.ReadLine() into a string seq</p>
<p>the seq should break when line = null</p>
<pre><code>ConsoleLines(): unit -> string seq
</code></pre>
<p>To be used like this:</p>
<pre><code>for line in ConsoleLines() do
DoSomething line
</code></pre>
<p>How do you write this function?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1700827/how-to-run-this-query-in-mongodb0How to run this query in mongodb?Luca Martinetti2009-11-09T12:55:09Z2009-11-10T14:22:54Z
<p>My doc has an array field <strong>Keys</strong></p>
<p><strong>Keys1</strong> and <strong>Keys2</strong> are two arrays</p>
<p>I want all the docs where <strong>Keys</strong> contains any value in <strong>Keys1</strong> <strong><em>AND</em></strong> any value in <strong>Keys2</strong></p>
<p>Any advice?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/833180/handy-f-snippets/845343#8453430Answer by Luca Martinetti for Handy F# snippets Luca Martinetti2009-05-10T13:35:57Z2009-09-25T08:02:42Z<p><strong>A handy cache function</strong> that keeps up to <code>max</code> <code>(key,reader(key))</code> in a dictionary and use a <code>SortedList</code> to track the MRU keys</p>
<pre><code>let Cache (reader: 'key -> 'value) max =
let cache = new Dictionary<'key,LinkedListNode<'key * 'value>>()
let keys = new LinkedList<'key * 'value>()
fun (key : 'key) -> (
let found, value = cache.TryGetValue key
match found with
|true ->
keys.Remove value
keys.AddFirst value |> ignore
(snd value.Value)
|false ->
let newValue = key,reader key
let node = keys.AddFirst newValue
cache.[key] <- node
if (keys.Count > max) then
let lastNode = keys.Last
cache.Remove (fst lastNode.Value) |> ignore
keys.RemoveLast() |> ignore
(snd newValue))
</code></pre>
http://stackoverflow.com/questions/467911/hadoop-on-windows-server3Hadoop on windows serverLuca Martinetti2009-01-22T02:58:02Z2009-09-16T01:57:26Z
<p>Hello,</p>
<p>I'm thinking about using hadoop to process large text files on my existing windows 2003 servers (about 10 quad core machines with 16gb of RAM)</p>
<p>The questions are:</p>
<ol>
<li><p>Is there any good tutorial on how to configure an hadoop cluster on windows?</p></li>
<li><p>What are the requirements? java + cygwin + sshd ? Anything else?</p></li>
<li><p>HDFS, does it play nice on windows?</p></li>
<li><p>I'd like to use hadoop in streaming mode. Any advice, tool or trick to develop my own mapper / reducers in c#?</p></li>
<li><p>What do you use for submitting and monitoring the jobs?</p></li>
</ol>
<p>Thanks</p>
http://stackoverflow.com/questions/631365/populate-dropdownlist-from-xmldatasource0Populate DropDownList from XmlDataSourceLuca Martinetti2009-03-10T17:16:40Z2009-08-07T02:58:30Z
<p>Hello,</p>
<p>I'd like to populate my DropDownList using a simple xml file:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<Databases>
<Database>foo</Database>
<Database>bar</Database>
<Database>baz</Database>
</Databases>
</code></pre>
<p>My XPath is </p>
<pre><code>/Databases/Database
</code></pre>
<p>My drop down list is rendered as:</p>
<pre><code><select name="databaseDropDownList" id="databaseDropDownList">
<option selected="selected" value="System.Web.UI.WebControls.XmlDataSourceNodeDescriptor">System.Web.UI.WebControls.XmlDataSourceNodeDescriptor</option>
<option value="System.Web.UI.WebControls.XmlDataSourceNodeDescriptor">System.Web.UI.WebControls.XmlDataSourceNodeDescriptor</option>
<option value="System.Web.UI.WebControls.XmlDataSourceNodeDescriptor">System.Web.UI.WebControls.XmlDataSourceNodeDescriptor</option>
</select>
</code></pre>
<p>How should I extract the text?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1165282/what-exactly-gcheapplanphase-does1What exactly gc_heap::plan_phase does?Luca Martinetti2009-07-22T13:33:55Z2009-07-22T20:21:44Z
<p>Hello,</p>
<p>I'm trying to debug a .net windows service that is spending lot of his time in GC. </p>
<p>Using windbg during collections I discovered that most of the time is spent in:</p>
<pre><code>00000000`0279e8e0 00000642`7f5368a3 mscorwks!WKS::gc_heap::plan_phase+0x50c
00000000`0279ea90 00000642`7f94ef4e mscorwks!WKS::gc_heap::gc1+0x73
00000000`0279eae0 00000642`7f51c259 mscorwks!WKS::gc_heap::garbage_collect+0x29e
00000000`0279eb40 00000642`7f4eb56e mscorwks!WKS::GCHeap::GarbageCollectGeneration+0x199
00000000`0279ebd0 00000642`7f4ea49d mscorwks!WKS::gc_heap::try_allocate_more_space+0x38e
00000000`0279eca0 00000642`7f4e9cef mscorwks!WKS::GCHeap::Alloc+0x6d
00000000`0279ecd0 00000642`7f9b35da mscorwks!FastAllocateObject+0xaf
</code></pre>
<p>The pattern of Gen0,Gen1,Gen2 collections is reasonable (100,10,1)</p>
<p>Please note that the application runs on x64 and has a really large heap:</p>
<pre><code>Gen0 10M
Gen1 26K
Gen2 4,371M
Large 3,500M
</code></pre>
<p>Note: I know about the great Tess Ferrandez blog.</p>
http://stackoverflow.com/questions/1134542/is-gclatencymode-lowlatency-a-good-choice1Is GCLatencyMode.LowLatency a good choice?Luca Martinetti2009-07-15T22:50:27Z2009-07-18T00:34:16Z
<p>I have a C# windows service acting as a server, the service holds some large (>8Gb) data structures in memory and exposes search methods to clients via remoting.</p>
<p>The avg search operation is executed in <200ms and the service handles up to 20 request/sec. </p>
<p>I'm noticing some serious performance degradation (>6000ms) on a regular basis for few seconds </p>
<p>My best guess is that the server threads are stopped by a gen2 garbage collection from time to time.</p>
<p>I'm considering switching from server gc to workstation gc and wrap my search method in this to prevent GC during requests.</p>
<pre><code> static protected void DoLowLatencyAction(Action action)
{
GCLatencyMode oldMode = GCSettings.LatencyMode;
try
{
GCSettings.LatencyMode = GCLatencyMode.LowLatency;
// perform time-sensitive actions here
action();
}
finally
{
GCSettings.LatencyMode = oldMode;
}
}
</code></pre>
<p>Is this a good idea?</p>
<p>Under what conditions the GC will be performed anyway inside the low latency block?</p>
<p>Note: I'm running on a x64 server with 8 cores</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1039017/can-i-tell-windows-not-to-swap-out-a-particular-processes-memory2Can I tell Windows not to swap out a particular processes’ memory?Luca Martinetti2009-06-24T15:15:38Z2009-07-05T21:12:38Z
<p>Is there a way to tell Windows that it shouldn't swap out a particular processes' memory to disk?</p>
<p>Its a .Net windows service with fairly large memory usage. I got lot of physical RAM but the OS seems to move part of the process memory to the pagefile anyway.</p>
http://stackoverflow.com/questions/1064274/get-current-asp-net-trust-level-programmatically0Get current ASP.NET Trust Level programmaticallyLuca Martinetti2009-06-30T15:18:44Z2009-06-30T15:22:26Z
<p>Is there an API to get the current ASP.NET Trust Level?</p>
http://stackoverflow.com/questions/526930/f-naming-convention1F# naming conventionLuca Martinetti2009-02-09T01:59:38Z2009-06-11T23:58:03Z
<p>Hi,</p>
<ul>
<li>Is there an "official" naming / casing convention for F#?</li>
</ul>
<p>I'm always in doubt of using C# style or not: </p>
<pre><code>Class.MyFunctionName or Module.my_function_name
</code></pre>
<p>In F# you're meant to mix BCL classes and F# library ones: they have different casing and the code looks very ugly.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/970497/does-thread-sleep-affect-threadstate/970515#9705152Answer by Luca Martinetti for Does Thread.Sleep affect ThreadState?Luca Martinetti2009-06-09T14:51:15Z2009-06-09T14:51:15Z<p>From <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadstate.aspx" rel="nofollow">MSDN</a></p>
<blockquote>
<p><strong>WaitSleepJoin</strong> The thread is blocked.
This could be the result of calling
Thread.Sleep or Thread.Join, of
requesting a lock — for example, by
calling Monitor.Enter or Monitor.Wait
— or of waiting on a thread
synchronization object such as
ManualResetEvent.</p>
</blockquote>
<p>Short answer is: Yes!</p>
http://stackoverflow.com/questions/807355/erlang-vs-the-real-outside-world-how-to-comunicate4Erlang vs The Real/Outside world, how to comunicate?Luca Martinetti2009-04-30T14:57:49Z2009-06-07T16:55:24Z
<p>Hello,</p>
<p>I'm learning erlang and I'm very fascinated by the mnesia db. I want to build some real world application in C# / F# using erlang as backend.</p>
<p>I'm searching for a good solution to communicate with erlang nodes from the outside world.</p>
<p>What I found so far:</p>
<p><strong>(A) <a href="http://jungerl.cvs.sourceforge.net/jungerl/jungerl/lib/otp.net/" rel="nofollow">OTP.net</a></strong>, an opensource .net library implementing the 'native' erlang comunication protocol</p>
<p>Problems here:</p>
<ul>
<li>The library is not very mature</li>
<li>I don't like the object model ported from Java (too many almost exact replicas of BCL classes)</li>
<li>I don't like the threading model use for connections.</li>
<li>Many open TCP ports are required</li>
<li>Lack of security</li>
</ul>
<p><strong>(B) Use ports / sockets</strong> in erlang and implement a custom protocol.</p>
<p>Problems here:</p>
<ul>
<li>I don't have any experience</li>
<li>Hard to mantain / expand for future versions</li>
</ul>
<p>Do you have any advice, experience in this topic?</p>
<p>Should I work on the OTP.net library to make it fit my needs or try to implement a new protocol from scratch?</p>
<p>What about a JSON or REST solution? Is there any erlang library that would do the trick?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/505190/net-deflatestream-4gb-limit5.net DeflateStream 4Gb LimitLuca Martinetti2009-02-02T22:19:47Z2009-06-02T12:36:12Z
<p>From msdn:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.io.compression.deflatestream.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.io.compression.deflatestream.aspx</a></p>
<p>This class cannot be used to compress files larger than 4 GB.</p>
<p>Do you know any other implementations for .net without the 4 gb limit?</p>
<p>Thanks</p>
<p>NOTE: I really need to decompress a file in GZ format with content larger than 4gb. Do you know any code that can do that? Thanks</p>
http://stackoverflow.com/questions/787755/how-to-add-a-node-to-an-mnesia-cluster5How to add a node to an mnesia cluster?Luca Martinetti2009-04-24T22:09:11Z2009-05-18T01:51:25Z
<p>Hello,</p>
<p>I'm an erlang and mnesia newbie..</p>
<p>How do I add a new disc_only_copies node to an mnesia database that already has a schema?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/721537/streaming-xml-serialization-in-net0streaming XML serialization in .netLuca Martinetti2009-04-06T13:51:41Z2009-05-13T19:15:12Z
<p>Hello,</p>
<p>I'm trying to serialize a very large <code>IEnumerable<MyObject></code> using an <code>XmlSerializer</code> without keeping all the objects in memory.</p>
<p>The <code>IEnumerable<MyObject></code> is actually lazy..</p>
<ol>
<li><p>I'm looking for a streaming solution that will:</p></li>
<li><p>Take an object from the <code>IEnumerable<MyObject></code>
Serialize it to the underlying stream using the standard serialization (<em>I don't want to handcraft the XML here!</em>)</p></li>
<li>Discard the in memory data and move to the next</li>
</ol>
<p>I'm trying with this code:</p>
<pre><code>using (var writer = new StreamWriter(filePath))
{
var xmlSerializer = new XmlSerializer(typeof(MyObject));
foreach (var myObject in myObjectsIEnumerable)
{
xmlSerializer.Serialize(writer, myObject);
}
}
</code></pre>
<p>but I'm getting multiple XML headers and I cannot specify a root tag <code><MyObjects></code> so my XML is invalid.</p>
<p>Any idea?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/826317/orderby-thenby-in-f3OrderBy ThenBy in F#Luca Martinetti2009-05-05T18:38:11Z2009-05-05T19:14:07Z
<p>Hello,</p>
<p>Is there any function in F# similar to LINQ fluent syntax for sorting by multiple expressions:</p>
<pre><code>myList.OrderBy(fun x->x.Something).ThenBy(fun x->x.SomethingElse)
</code></pre>
<p>I'd love something like:</p>
<pre><code>myList
|> Seq.sort_by(fun x->x.Something)
|> Seq.then_by(fun x->x.SomethingElse)
</code></pre>
<p>Thx</p>
http://stackoverflow.com/questions/805429/learning-scala-or-haskell/807224#8072245Answer by Luca Martinetti for Learning Scala or HaskellLuca Martinetti2009-04-30T14:33:54Z2009-04-30T14:33:54Z<p>What about F#? Really pragmatic language with all the cool functional and OO features targeting the CLR</p>
http://stackoverflow.com/questions/785834/soap-web-services-in-erlang4SOAP web services in erlangLuca Martinetti2009-04-24T13:24:40Z2009-04-24T17:34:23Z
<p>Hello,</p>
<p>Is there any good erlang library for creating / accessing SOAP web services?</p>
<p>Maybe also handling plain XML is quite difficult.</p>
<p>Is Json a good alternative? Any lib for that?</p>
<p>My goal is interop with existing .Net web services.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/785826/handling-net-utf-8-strings-in-erlang0Handling .Net UTF-8 strings in ErlangLuca Martinetti2009-04-24T13:21:32Z2009-04-24T17:30:57Z
<p>Hello,</p>
<p>I'm playing a bit with erlang and the distributed db Mnesia. </p>
<p>One of the first problem I'm facing is the incompatibilty beetween the 'int list' strings of erlang and .Net UTF-8 strings. </p>
<p>Is there any good conversion library?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/234734/games-that-teach-programming-fundamentals/641010#6410103Answer by Luca Martinetti for Games that teach Programming FundamentalsLuca Martinetti2009-03-13T00:22:42Z2009-03-13T00:22:42Z<p><a href="http://www.robozzle.com/" rel="nofollow">robozzle</a> an amazing social / programming puzzle in silverlight</p>
http://stackoverflow.com/questions/640902/faster-way-to-do-a-listt-contains/640927#6409271Answer by Luca Martinetti for Faster way to do a List<T>.Contains()Luca Martinetti2009-03-12T23:47:06Z2009-03-12T23:47:06Z<p>If the elements are unique within each list you should consider using an <a href="http://msdn.microsoft.com/en-us/library/bb359438.aspx" rel="nofollow">HashSet</a></p>
<blockquote>
<p>The HashSet(T) class provides high
performance set operations. A set is a
collection that contains no duplicate
elements, and whose elements are in no
particular order.</p>
</blockquote>
http://stackoverflow.com/questions/516774/ziplib-error-while-decompressing-gzip0#ZipLib error while decompressing GZipLuca Martinetti2009-02-05T16:52:44Z2009-03-06T15:55:27Z
<p>Hello,</p>
<p>I'm getting this error while trying to decompress some GZ files with #ZipLib 0.85.5</p>
<p>Those file are not corrupted, I'm able to decompress it correctly using 7-Zip.</p>
<p>ICSharpCode.SharpZipLib.SharpZipBaseException Unexpected EOF</p>
<p>Any idea? Thanks</p>
http://stackoverflow.com/questions/602619/net-system-missingmethodexception-3-5-sp1-versioning-hell3.Net System.MissingMethodException - 3.5 SP1 versioning hellLuca Martinetti2009-03-02T14:55:46Z2009-03-02T15:17:21Z
<p>Hello,</p>
<p>After deploying an ASP.net webservice to my production server i got this exception:</p>
<blockquote>
<p><strong>System.MissingMethodException</strong></p>
<p>Method not found: 'Boolean
System.Threading.WaitHandle.WaitOne(Int32)'</p>
</blockquote>
<p>The MSDN <a href="http://msdn.microsoft.com/en-us/library/cc189907.aspx" rel="nofollow">documentation</a> states:</p>
<blockquote>
<p>Version Information
.NET Framework
Supported in: <strong>3.5 SP1</strong>, 3.0 SP2, 2.0 SP2</p>
</blockquote>
<p>so the reason of this error is that my server was not updated to the latest service pack.</p>
<p>The question is:</p>
<p>Why does the code start? IMO if the target framework version is different the app should not start at all.</p>
<p>How can I assure that my code can run on the target machine framework version before JIT?</p>
<p>This is crazy. I think microsoft should take versioning issues more seriously.</p>
http://stackoverflow.com/questions/575406/what-is-the-c-equivalent-of-the-stl-set/575419#5754197Answer by Luca Martinetti for What is the C# equivalent of the stl set?Luca Martinetti2009-02-22T18:37:53Z2009-02-23T22:29:11Z<p>You could use an <a href="http://msdn.microsoft.com/en-us/library/bb359438.aspx" rel="nofollow">HashSet</a></p>
<blockquote>
<p>The <code>HashSet<T></code> class provides high performance set operations. A set is a collection that contains <strong>no duplicate elements</strong>, and whose elements are in no particular order.</p>
</blockquote>
<p>The capacity of a <code>HashSet<T></code> object is the number of elements that the object can hold. A <code>HashSet<T></code> object's capacity automatically increases as elements are added to the object.</p>
http://stackoverflow.com/questions/542312/asp-net-access-to-the-temp-directory-is-denied0ASP.NET Access to the temp directory is denied. Luca Martinetti2009-02-12T17:02:22Z2009-02-12T17:17:46Z
<p>I'm experiencing this problem today on many different servers. </p>
<p><strong>System.UnauthorizedAccessException: Access to the temp directory is denied.</strong></p>
<p>The servers were not touched recently. The only thing that comes in my mind is a windows update breaking something.. Any idea? </p>
<p>This happens when trying to access a webservice from an asp.net page</p>
<pre><code>System.UnauthorizedAccessException: Access to the temp directory is denied. Identity 'NT AUTHORITY\NETWORK SERVICE' under which XmlSerializer is running does not have sufficient permission to access the temp directory. CodeDom will use the user account the process is using to do the compilation, so if the user doesnt have access to system temp directory, you will not be able to compile. Use Path.GetTempPath() API to find out the temp directory location.
at System.Xml.Serialization.Compiler.Compile(Assembly parent, String ns, XmlSerializerCompilerParameters xmlParameters, Evidence evidence)
at System.Xml.Serialization.TempAssembly.GenerateAssembly(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, Evidence evidence, XmlSerializerCompilerParameters parameters, Assembly assembly, Hashtable assemblies)
at System.Xml.Serialization.TempAssembly..ctor(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, String location, Evidence evidence)
at System.Xml.Serialization.XmlSerializer.FromMappings(XmlMapping[] mappings, Evidence evidence)
at System.Web.Services.Protocols.XmlReturn.GetInitializers(LogicalMethodInfo[] methodInfos)
at System.Web.Services.Protocols.HttpServerType..ctor(Type type)
at System.Web.Services.Protocols.HttpServerProtocol.Initialize()
at System.Web.Services.Protocols.ServerProtocol.SetContext(Type type, HttpContext context, HttpRequest request, HttpResponse response)
at System.Web.Services.Protocols.ServerProtocolFactory.Create(Type type, HttpContext context, HttpRequest request, HttpResponse response, Boolean& abortProcessing)
</code></pre>
http://stackoverflow.com/questions/532722/is-endinvoke-optional-sort-of-optional-or-definitely-not-optional/532730#5327308Answer by Luca Martinetti for Is EndInvoke() optional, sort-of optional, or definitely not optional?Luca Martinetti2009-02-10T15:13:28Z2009-02-10T15:13:28Z<p>EndInvoke is not optional.</p>
<p>More info <a href="http://www.interact-sw.co.uk/iangblog/2005/05/16/endinvokerequired" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/484511/is-there-any-way-for-executing-a-method-multiple-times-but-managing-connections/523060#5230601Answer by Luca Martinetti for Is there any way for executing a method multiple times, but managing connections/threads? (.NET)Luca Martinetti2009-02-07T03:22:08Z2009-02-07T03:22:08Z<p>You should take a look at F# asynchronous workflows. </p>
<p><strong>You really don't want your code to be parallel but asynchronous</strong></p>
<blockquote>
<p>asynchronous refers to programs that
perform some long running operations
that don't necessary block a calling
thread, for example accessing the
network, calling web services or
performing any other I/O operation in
general</p>
</blockquote>
<p>This is a very interesting <a href="http://tomasp.net/blog/csharp-async.aspx" rel="nofollow">article</a> on this concept explained using C# iterators.</p>
<p>This is a <a href="http://books.google.com/books?id=NcrMkjVxahMC&pg=PA388&lpg=PA388&dq=asynchronous+workflows+crawler&source=web&ots=pkq-NDgmgE&sig=Iq5cdwqOXv_STKm2jXQkGxiyxdk&hl=en&ei=dvmMSeP5O5XW0gWL2M2nCw&sa=X&oi=book_result&resnum=4&ct=result#PPA385,M1" rel="nofollow">great book</a> about F# and asynchronous programming. </p>
<p>The learning curve is very bad (a lot of odd stuff: F# syntax, the Async<'a> type , monads, etc.) but is a VERY powerful approach and can be used in real life with great C# interop.</p>
<p>The main idea here is continuation: while your're wating for some I/O operations let your threads do something else!</p>
http://stackoverflow.com/questions/321545/db4o-development-tools-and-resources/509667#5096672Answer by Luca Martinetti for db4o development tools and resources?Luca Martinetti2009-02-04T00:51:27Z2009-02-04T00:51:27Z<p>It seems like the object manager is now free:</p>
<p><a href="http://developer.db4o.com/blogs/product_news/archive/2009/01/25/object-manager-enterprise-now-free-to-all-developers.aspx" rel="nofollow">Object Manager Enterprise Now Free To All Developers</a></p>
<p>I want to give it a try!</p>
http://stackoverflow.com/questions/505891/f-how-to-abstract-console-readline-as-string-seq/507544#5075440Answer by Luca Martinetti for F# how to abstract Console.ReadLine() as string seqLuca Martinetti2009-02-03T15:28:27Z2009-02-03T15:28:27Z<p>That's my final solution:</p>
<pre><code>type System.Console with
static member Lines =
Seq.SequenceExpressionHelpers.generate (fun () -> Console.ReadLine)
(fun x -> match x() with
|null -> None
|x -> Some x)
ignore
</code></pre>
http://stackoverflow.com/questions/354686/programming-related-songs/455394#4553940Answer by Luca Martinetti for Programming Related SongsLuca Martinetti2009-01-18T16:21:27Z2009-01-18T16:21:27Z<p>try last.fm with your own best artist as seed and forget about it and focus on coding!</p>
http://stackoverflow.com/questions/1165282/what-exactly-gcheapplanphase-does/1168010#1168010Comment by Luca Martinetti on What exactly gc_heap::plan_phase does?Luca Martinetti2009-07-22T20:33:51Z2009-07-22T20:33:51ZThanks for the good answer. About 5 sec. Should I consider the idea that my heap is fragmented? How do the GC decide to do a full gen2 collection instead of just gen0. All the data are loaded at process startup and don't change at all during the executionhttp://stackoverflow.com/questions/1134542/is-gclatencymode-lowlatency-a-good-choice/1134768#1134768Comment by Luca Martinetti on Is GCLatencyMode.LowLatency a good choice?Luca Martinetti2009-07-16T00:53:24Z2009-07-16T00:53:24Z+1 for the link
http://stackoverflow.com/questions/1134542/is-gclatencymode-lowlatency-a-good-choiceComment by Luca Martinetti on Is GCLatencyMode.LowLatency a good choice?Luca Martinetti2009-07-15T22:59:04Z2009-07-15T22:59:04ZYep. I used performace counters and logging and it is GC time.http://stackoverflow.com/questions/833180/handy-f-snippets/851449#851449Comment by Luca Martinetti on Handy F# snippets Luca Martinetti2009-05-12T11:03:16Z2009-05-12T11:03:16Z+1 for 'the man himself'http://stackoverflow.com/questions/833180/handy-f-snippets/845343#845343Comment by Luca Martinetti on Handy F# snippets Luca Martinetti2009-05-11T10:59:20Z2009-05-11T10:59:20ZSorry, I meant MRU (Most Recently Used).
Imagine reader as a slow lookup function that access a remote database or a web service or even a very heavy computation.http://stackoverflow.com/questions/817641/i-have-a-single-file-and-need-to-serialize-multiple-objects-randomly-how-can-iinComment by Luca Martinetti on I have a Single File And need to serialize multiple objects randomly.how can Iin c# ??Luca Martinetti2009-05-03T18:12:10Z2009-05-03T18:12:10ZWhat do you mean with randomly?http://stackoverflow.com/questions/807385/what-do-i-need-to-do-for-this-line-of-code-c/807423#807423Comment by Luca Martinetti on What do I need to do for this line of code? (C#)Luca Martinetti2009-04-30T15:17:04Z2009-04-30T15:17:04ZDon't like this. A new object on every check?http://stackoverflow.com/questions/807355/erlang-vs-the-real-outside-world-how-to-comunicate/807394#807394Comment by Luca Martinetti on Erlang vs The Real/Outside world, how to comunicate?Luca Martinetti2009-04-30T15:14:57Z2009-04-30T15:14:57ZThanks for the Pycon info!http://stackoverflow.com/questions/785826/handling-net-utf-8-strings-in-erlang/785835#785835Comment by Luca Martinetti on Handling .Net UTF-8 strings in ErlangLuca Martinetti2009-04-24T13:31:35Z2009-04-24T13:31:35ZDo you have any example?
http://stackoverflow.com/questions/467911/hadoop-on-windows-server/779842#779842Comment by Luca Martinetti on Hadoop on windows serverLuca Martinetti2009-04-24T13:17:32Z2009-04-24T13:17:32ZThanks for your answer. Unfortunatelly I cannot reimage the servers, maybe I'll just use some linux EC2 instances.Porting to Mono is a bit tricky could work. Lucahttp://stackoverflow.com/questions/721537/streaming-xml-serialization-in-net/721591#721591Comment by Luca Martinetti on streaming XML serialization in .netLuca Martinetti2009-04-06T14:14:24Z2009-04-06T14:14:24ZThe problem here is that I don't want to keep all the objects or the whole XML doc / string in memory. I really want to serialize one object at a time and append to a FileStream the XML. http://stackoverflow.com/questions/631365/populate-dropdownlist-from-xmldatasource/631566#631566Comment by Luca Martinetti on Populate DropDownList from XmlDataSourceLuca Martinetti2009-03-12T23:43:03Z2009-03-12T23:43:03Zthx but I want to "Populate DropDownList from XmlDataSource"http://stackoverflow.com/questions/602619/net-system-missingmethodexception-3-5-sp1-versioning-hell/602643#602643Comment by Luca Martinetti on .Net System.MissingMethodException - 3.5 SP1 versioning hellLuca Martinetti2009-03-02T15:15:41Z2009-03-02T15:15:41ZThanks for your feedback. What a pity anyway!http://stackoverflow.com/questions/544430/how-to-psyche-yourself-to-just-program-the-damn-thing/544464#544464Comment by Luca Martinetti on How to psyche yourself to just program the damn thingLuca Martinetti2009-02-15T16:51:41Z2009-02-15T16:51:41Z+1 for noise canceling headphones. I'm addicted ;)http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/316233#316233Comment by Luca Martinetti on What is the best comment in source code you have ever encountered?Luca Martinetti2009-02-10T21:11:01Z2009-02-10T21:11:01Zlmao lmao lmao