User Dustin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T01:09:14Zhttp://stackoverflow.com/feeds/user/39975http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1784517/how-do-i-cache-a-find-in-a-controller-using-memcache/1784855#17848550Answer by Dustin for How do I cache a find in a controller using memcache?Dustin2009-11-23T17:56:00Z2009-11-23T17:56:00Z<p>You don't cache model objects in the controller, you cache them in the model.</p>
http://stackoverflow.com/questions/1780303/tornado-and-python-3-x/1780477#17804770Answer by Dustin for Tornado and Python 3.xDustin2009-11-22T23:59:52Z2009-11-22T23:59:52Z<p>Tornado is a good web framework over something that kind of looks like <a href="http://twistedmatrix.com/" rel="nofollow">twisted</a>, but doesn't have twisted's bug fixes or features. I did <a href="http://dustin.github.com/2009/09/12/tornado.html" rel="nofollow">a port to twisted</a> a while back that essentially just removed code.</p>
<p>Some of these features are <em>very</em> important. For example, if you're doing WSGI, you're blocking a non-blocking web framework. Bad Things will happen. Twisted's async web framework also has a WSGI container, but it uses <code>deferToThread</code> to prevent it from blocking other requests. Still not the right way to scale an app, but it falls apart much more slowly.</p>
http://stackoverflow.com/questions/1774610/hudson-infinite-loop-polling-for-changes-in-git-repository/1774738#17747381Answer by Dustin for Hudson infinite loop polling for changes in Git repository?Dustin2009-11-21T06:40:33Z2009-11-21T06:40:33Z<p>Your build system should not have any write interaction with your revision control system. It most certainly shouldn't <em>push</em> those changes automatically.</p>
<p>Your build system may <em>ask</em> git (via <code>git describe</code>, for example) what the current revision is. Anything else is redundant and error prone.</p>
<p>Another thing you may consider is not polling for changes. That seems like a silly way to operate. (Admittedly, I'm a heavy buildbot user quite accustomed to having everything be triggered on events.)</p>
<p>The git repo that's being polled knows when it changes. It should just tell the CI system to start a build immediately based on that. You get your builds sooner and since they're all triggered, you don't have your computers sitting around doing lots of work for no good reason.</p>
http://stackoverflow.com/questions/1773306/distributed-caching-on-64-bit-windows-machines/1774002#17740021Answer by Dustin for Distributed caching on 64-bit Windows machinesDustin2009-11-21T00:11:17Z2009-11-21T00:11:17Z<p>Memcached runs on Windows, but we don't have the packaging solid yet. A <a href="http://www.codeplex.com/EnyimMemcached" rel="nofollow">good client</a> has been available for a while.</p>
http://stackoverflow.com/questions/1773389/memcached-writes-extremely-slow/1773958#17739580Answer by Dustin for Memcached Writes Extremely SlowDustin2009-11-20T23:59:34Z2009-11-20T23:59:34Z<p>That memcached client is known to be unnecessarily incredibly slow.</p>
<p>Perhaps trying <a href="http://github.com/fauna/memcached" rel="nofollow">Evan Weaver's</a> client would give you better results.</p>
http://stackoverflow.com/questions/1768404/how-big-can-erlang-dets-be-and-what-to-do-if-its-too-small/1768601#17686016Answer by Dustin for How big can Erlang DETS be and what to do if its too small?Dustin2009-11-20T05:59:34Z2009-11-20T05:59:34Z<p>This is kind of an RTFM question. As quoted directly in the second paragraph of the <a href="http://www.erlang.org/doc/man/dets.html" rel="nofollow">DETS manual</a>:</p>
<blockquote>
<p>The size of Dets files cannot exceed 2 GB. If larger tables are needed, Mnesia's table fragmentation can be used.</p>
</blockquote>
http://stackoverflow.com/questions/1767165/git-and-empty-folders/1768563#17685632Answer by Dustin for git and empty foldersDustin2009-11-20T05:47:24Z2009-11-20T05:47:24Z<p>You should realize that you are asking for your source control system to set up some resources that are not source, not part of your build system, but essential to the operation of your application. I would do one of the following:</p>
<ol>
<li>Make the build create the necessary directory.</li>
<li>Have the application create the required directories as it runs.</li>
</ol>
<p>Similarly, if the application wanted to append to a log file, it wouldn't make sense to have that logfile start out in the revision control system, would it?</p>
http://stackoverflow.com/questions/1761825/referencing-the-child-of-a-commit-in-git/1765224#17652240Answer by Dustin for Referencing the child of a commit in GitDustin2009-11-19T17:51:05Z2009-11-19T17:51:05Z<p>It depends on what you're asking. There could be an infinite number of children of the current head in an infinite number of branches, some local, some remote, and many that have been rebased away and are in your repository, but not part of a history you intend to publish.</p>
<p>For a simple case, if you have just done a reset to <code>HEAD^</code>, you can get back the child you just threw away as <code>HEAD@{1}</code>.</p>
http://stackoverflow.com/questions/1761054/git-in-a-company-hosting-own-server/1761095#17610951Answer by Dustin for Git in a company - hosting own 'server'Dustin2009-11-19T05:30:21Z2009-11-19T05:30:21Z<p>There are lots of git management GUIs out there if you want to run it yourself. <a href="http://gitorious.org/" rel="nofollow">gitorious</a> is nice, for example.</p>
<p>For your authentication needs, that's mostly up to you. You may have a hard time having ssh honor your preferred auth technique (last time I did anything like that, I modified ssh to read keys out of LDAP).</p>
<p>The web interface could do whatever you'd like, I'm sure. I'd probably just leave it open on the inside of the network, though.</p>
http://stackoverflow.com/questions/1747275/are-there-really-any-production-issues-in-using-memcached-in-windows/1747803#17478031Answer by Dustin for Are there really any production issues in using memcached in Windows?Dustin2009-11-17T10:05:40Z2009-11-17T10:05:40Z<p>There is no official release of memcached on Windows. We're working on it right now, but unless you're pulling from a dev branch or you've downloaded a <a href="http://labs.northscale.com/memcached-packages/" rel="nofollow">pre-release</a>, you've definitely got an unsupported version with a large number of bugs and missing features from the last couple of years.</p>
http://stackoverflow.com/questions/1733205/minimum-work-size-of-a-goroutine/1733495#17334953Answer by Dustin for minimum work size of a goroutineDustin2009-11-14T06:31:49Z2009-11-14T06:31:49Z<p>goroutine is an abstraction that you use if it helps you model your application better. You're doing concurrency oriented programming, so think about the parts of your application that have concurrency within them.</p>
<p>Think about an OO system and imagine asking the same question about whether you should instantiate an object.</p>
<p>Do the thing that makes sense first.</p>
http://stackoverflow.com/questions/1727540/is-libevent-required-for-building-memcached-for-windows/1730582#17305821Answer by Dustin for Is libevent required for building memcached for Windows?Dustin2009-11-13T17:01:34Z2009-11-13T17:01:34Z<p>Yes, libevent is a hard requirement. It's the part that abstracts out the socket multiplexer.</p>
<p>Microsoft does not (and as far as I can tell will not ever) support C99, so your next and harder step will be building memcached itself using Microsoft tools.</p>
<p>We are working hard on getting a new release out with Windows support. We don't have the builders integrated into our public build farm yet, but my company's <a href="http://labs.northscale.com/" rel="nofollow">labs site</a> has some downloads for Windows demonstrating what you'll get when the build is generally available.</p>
<p><a href="http://github.com/CaptTofu/memcached/tree/win32" rel="nofollow">The branch</a> from which that was built might be a good starting point for you if you want to do it yourself.</p>
http://stackoverflow.com/questions/1725780/git-pull-from-several-repos-in-one-command/1726032#17260323Answer by Dustin for Git pull from several repos in one commandDustin2009-11-12T23:05:55Z2009-11-12T23:05:55Z<pre><code>git remote update
</code></pre>
<p>will pull from all of your remotes. The merge won't be automatic. You could try</p>
<pre><code>git merge -s octopus r1/master r2/master r3/master r4/master
</code></pre>
<p>to get a five-way octopus merge, but it doesn't seem like that's what you'd really want (I certainly wouldn't want that).</p>
http://stackoverflow.com/questions/1725793/enyim-and-memcached-notstored-errors/1725999#17259990Answer by Dustin for enyim and memcached : NOT_STORED errorsDustin2009-11-12T22:59:05Z2009-11-12T22:59:05Z<p>Strongly recommend upgraded your version of memcached.</p>
<p>NOT_STORED means just that, your data was not stored. If you are using the <code>add</code> command to store data, this means that there's already data under that key. If you are using <code>replace</code> it means that there's <em>not</em> data under that key. You probably mea <code>set</code>.</p>
http://stackoverflow.com/questions/1710894/using-git-show-all-commits-that-are-in-one-branch-but-not-the-others/1710951#17109518Answer by Dustin for Using Git, show all commits that are in one branch, but not the other(s)Dustin2009-11-10T20:26:28Z2009-11-10T20:26:28Z<p>You probably just want</p>
<pre><code>git branch --contains branch-to-delete
</code></pre>
<p>If it reports something, the branch has been merged.</p>
<p>Your alternatives are really just rev-list syntax things. e.g. <code>git log one-branch..another-branch</code> shows everything that <code>one-branch</code> needs to have everything <code>another-branch</code> has.</p>
<p>You may also be interested in <code>git show-branch</code> as a way to see what's where.</p>
http://stackoverflow.com/questions/1704907/how-can-i-get-my-c-code-to-automatically-print-out-its-git-version-hash/1705246#17052460Answer by Dustin for How can I get my C code to automatically print out its Git version hash?Dustin2009-11-10T02:13:12Z2009-11-10T02:13:12Z<p>You can see how I did it for memcached in <a href="http://github.com/dustin/memcached/commit/923a335bf8613696d658448cd9c48a963924d436" rel="nofollow">the original commit</a>.</p>
<p>Basically, tag occasionally, and make sure the thing you deliver comes from <code>make dist</code> or similar.</p>
http://stackoverflow.com/questions/1690882/how-do-i-see-if-memcached-is-already-running-on-my-chosen-port/1694090#16940900Answer by Dustin for How do I see if memcached is already running on my chosen port?Dustin2009-11-07T19:10:50Z2009-11-07T19:10:50Z<p>If you're asking this question, it sounds like you're running a really old version. If you did this on a recent version, you'd see this:</p>
<pre><code>% ./memcached
failed to listen on TCP port 11211: Address already in use
</code></pre>
http://stackoverflow.com/questions/1692346/adding-authentication-to-beanstalkd-from-python-or-any-unix-client/1692516#16925160Answer by Dustin for Adding authentication to beanstalkd from Python (or any UNIX) clientDustin2009-11-07T09:15:05Z2009-11-07T09:15:05Z<p>This question really belongs on the <a href="http://groups.google.com/group/beanstalk-talk/" rel="nofollow">beanstalkd talk list</a>.</p>
<p>I added SASL support to memcached recently for a similar reason. The overhead is almost irrelevant in practice since you only authenticate at connect time (and you hold connections open indefinitely).</p>
<p>If authentication is something you need, I'd recommend bringing it up there where people are likely to help you solve your problems.</p>
http://stackoverflow.com/questions/1678848/accessing-memcached-stats-via-cmemcache-or-django-returns-warning/1678977#16789770Answer by Dustin for accessing memcached stats via cmemcache or django returns warningDustin2009-11-05T07:49:30Z2009-11-05T07:49:30Z<p>First, you should not run those versions of memcached. They have lots and lots of known bugs and are many years old.</p>
<p>Secondly, we add stats to memcached quite frequently, so if these libraries are complaining when they encounter new stats, you should complain to their authors.</p>
<p>Also, I don't believe cmemcache is maintained. It's based on a deprecated memcached C library that has several known bugs. Users of that library are encouraged to migrate to libmemcached.</p>
http://stackoverflow.com/questions/1672322/how-to-get-the-current-node-name-in-an-erlang-cluster/1672365#16723652Answer by Dustin for How to get the current node name in an erlang cluster?Dustin2009-11-04T08:27:10Z2009-11-04T08:27:10Z<p>The problem that you ran into was that you're trying to use <code>if</code> to perform a match without a default condition (and one of your predefined conditions isn't being met).</p>
<p>I don't think I've ever used <code>if</code> in an erlang app, but I think there are much more simple ways to do what you're trying here (and you won't have to rewrite your code when you add a fourth node).</p>
<p>Are you sure you aren't trying to write this?</p>
<pre><code>lists:foreach(fun(N) -> message(N, H) end, nodes()).
</code></pre>
<p>Or, perhaps this:</p>
<pre><code>lists:foreach(fun(N) -> message(N, H) end, [node1, node2, node3] -- [node()]).
</code></pre>
http://stackoverflow.com/questions/1670970/how-to-cherry-pick-multiple-commits/1671606#16716061Answer by Dustin for How to cherry-pick multiple commitsDustin2009-11-04T03:59:07Z2009-11-04T03:59:07Z<pre><code>git rev-list --reverse b..f | xargs -n 1 git cherry-pick
</code></pre>
http://stackoverflow.com/questions/1666441/a-multithreaded-queue-in-python/1668863#16688630Answer by Dustin for A multithreaded queue in PythonDustin2009-11-03T17:22:43Z2009-11-03T17:22:43Z<p>I'd recommend you look at <a href="http://kr.github.com/beanstalkd/" rel="nofollow">beanstalkd</a> or <a href="http://gearman.org/" rel="nofollow">gearman</a>.</p>
<p>Let your web server be a web server, and scale your long-running jobs independently and more safely by moving them through a queue to an external worker.</p>
http://stackoverflow.com/questions/1658698/erlang-list-manipulation/1658919#16589192Answer by Dustin for erlang list manipulationDustin2009-11-02T00:33:33Z2009-11-02T00:33:33Z<p>For your specific example case, you can define the following function:</p>
<pre><code>group3([], Acc) ->
Acc;
group3([A,B,C|Tl], Acc) ->
group3(Tl, [[A,B,C]] ++ Acc).
group3(L) ->
lists:reverse(group3(L, [])).
</code></pre>
<p>and invoke it like this:</p>
<pre><code>group3(lists:flatten(lists:map(fun({_, B}) -> B end, L))).
</code></pre>
<p>Hopefully that's enough to give you a general strategy.</p>
http://stackoverflow.com/questions/1653245/git-merge-results-in-duplicate-commits-on-published-branch/1653355#16533551Answer by Dustin for git merge results in duplicate commits on published branchDustin2009-10-31T03:58:48Z2009-10-31T03:58:48Z<p>If it's non fast-forward, it's not identical. The duplicates are commits that look like yours, but aren't the same as yours.</p>
<p>If you rebase your branch over origin, it will fast-forward.</p>
<pre><code>git rebase remote_name/upstream_branch_name
</code></pre>
http://stackoverflow.com/questions/1647179/getting-mmix-repo-for-cvs-git/1647434#16474343Answer by Dustin for Getting MMIX repo for CVS/GitDustin2009-10-30T00:45:50Z2009-10-30T00:45:50Z<p>It's not clear what you expected that to do. git is not magic that drives CVS, it's an entirely different thing altogether.</p>
<p>git does have a <code>cvsimport</code> tool that will make a git repository out of a CVS repository, but do note that this will be an entirely different thing.</p>
<p>An example import:</p>
<pre><code>mkdir mmixmasters
cd mmixmasters
git cvsimport -d:pserver:anonymous@mmixmasters.cvs.sourceforge.net:/cvsroot/mmixmasters mmixmasters
</code></pre>
<p>I'd recommend you understand both git and cvs better before trying to work with one gating the other, though.</p>
http://stackoverflow.com/questions/1640305/git-question-how-can-i-push-1-commit-without-the-other/1640955#16409554Answer by Dustin for git question. How can I push 1 commit without the other?Dustin2009-10-29T00:20:03Z2009-10-29T00:20:03Z<p>All of the commits leading up to a particular commit are what defines that new commit.</p>
<p>That is, if you have a master → dev → bugfix as shown in the image below:</p>
<p><img src="http://img.skitch.com/20091029-tbffrg53q73mdipiwcr3g2ywuh.png" alt="master → dev → bugfix" title="" /></p>
<p>you can push <code>dev</code> alone but not <code>bugfix</code> alone, but the definition of <code>bugfix</code> includes <code>dev</code>, so <code>dev</code> has no meaning without <code>bugfix</code></p>
<p>However, if you build this bugfix out as a feature branch, you'd have something that looked more like this:</p>
<p><img src="http://img.skitch.com/20091029-t3w5qk3bhj3ftx1d9xnk32ibkb.png" alt="feature branch" title="" /></p>
<p>You could still retroactively do that (create a new branch from <code>origin/master</code>, cherry-pick the change, and then <code>git reset --hard HEAD^</code> on your development branch to get the bugfix change off of it).</p>
<p>Once that's complete, you can forward-port your dev branch with a simple <code>git rebase master</code> and it'll look like this:</p>
<p><img src="http://img.skitch.com/20091029-1ts3enwsmsr29imcu7tyk75ett.png" alt="new master" title="" /></p>
<p>In practice, starting bug fixes from a branch will make this kind of thing a lot easier in general.</p>
http://stackoverflow.com/questions/1623411/is-there-a-memcache-catalog/1623496#16234964Answer by Dustin for Is there a memcache "catalog"?Dustin2009-10-26T07:33:19Z2009-10-26T07:33:19Z<p>No, we have no intention of supporting such functionality.</p>
<p>Currently, all memcached operations are O(1) (that includes flush). Having an operation that gives you a list of keys can't satisfy that constraint. It would require locks that will be held for the duration of the request, and give you information that may be inaccurate at the very moment you see it.</p>
<p>It's the kind of thing people ask for frequently, but nobody has ever presented a use case where a) they needed it and b) they were using memcached in a way that wasn't harmful to their environment.</p>
<p>Think Heisenberg uncertainty principal meets ephemeral storage.</p>
http://stackoverflow.com/questions/1621167/how-do-i-know-if-a-branch-has-already-been-merged-in-svn-mercurial-git/1622180#16221802Answer by Dustin for How do I know if a branch has already been merged in SVN/Mercurial/Git?Dustin2009-10-25T21:43:39Z2009-10-25T21:43:39Z<p>In git, you can use <code>--contains</code> to list branches that contain other branches:</p>
<pre><code>git branch -a --contains feature
</code></pre>
<p>will show all branches (with <code>-a</code>, that includes remote branches) that have merged the given feature.</p>
<p><code>git show-branch</code> will show lots of details of the relationships between branches. It takes a bit of time to learn to read it effectively, but it's very valuable and will show you a lot in a small amount of space.</p>
http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1598937#15989370Answer by Dustin for Git and Mercurial - Compare and ContrastDustin2009-10-21T05:51:00Z2009-10-21T05:51:00Z<p>Check out <a href="http://jointheconversation.org/2008/11/24/on-mercurial.html" rel="nofollow">Scott Chacon's post</a> from a while back.</p>
<p>I think git has a reputation for being "more complicated", though in my experience it's not more complicated than it needs to be. IMO, the git model is <em>way</em> easier to understand (tags contain commits (and pointers to zero or more parent commits) contain trees contain blobs and other trees... done).</p>
<p>It's not just my experience that git is not more confusing than mercurial. I'd recommend again reading <a href="http://jointheconversation.org/2008/11/24/on-mercurial.html" rel="nofollow">this blog post from Scott Chacon</a> on the matter.</p>
http://stackoverflow.com/questions/1583904/what-are-gits-thin-packs/1584007#15840070Answer by Dustin for What are git's thin packs?Dustin2009-10-18T04:22:33Z2009-10-18T04:22:33Z<p>My understanding is that it's an optimization for transmitting objects between two repositories.</p>
<p>I think you'd only use it when implementing your own git services not using send and receive pack.</p>
http://stackoverflow.com/questions/1778278/if-you-had-the-time-and-inclination-to-create-a-programming-language-what-charac/1778351#1778351Comment by Dustin on If you had the time and inclination to create a programming language, what characteristics would it have?Dustin2009-11-22T10:15:06Z2009-11-22T10:15:06ZI wrote a scripting language like this a while back. I called it psh or "pourne shell" as a bourne shell with parallel for loops. It worked wonderfully for me. I should clean up the page I had for it and put the repo up somewhere.http://stackoverflow.com/questions/1773306/distributed-caching-on-64-bit-windows-machines/1774002#1774002Comment by Dustin on Distributed caching on 64-bit Windows machinesDustin2009-11-22T01:07:02Z2009-11-22T01:07:02Zcapttofu on github is doing the most with it right now. The biggest part is making a build run consistently on Windows. We do have preliminary releases over at <a href="http://labs.northscale.com/" rel="nofollow">labs.northscale.com</a> but they haven't been brought into the master branches just yet.http://stackoverflow.com/questions/1773731/in-git-how-do-i-remove-a-commit-from-one-branch-and-apply-it-to-a-different-bran/1773753#1773753Comment by Dustin on In git, how do I remove a commit from one branch and apply it to a different branch?Dustin2009-11-20T23:22:08Z2009-11-20T23:22:08ZSteps 1+2 == git reverthttp://stackoverflow.com/questions/1761054/git-in-a-company-hosting-own-serverComment by Dustin on Git in a company - hosting own 'server'Dustin2009-11-19T05:27:53Z2009-11-19T05:27:53ZStep 1: Don't write "git" in all caps. :/ It's not an acronym, just a word.http://stackoverflow.com/questions/1757572/where-can-i-find-a-vim-syntax-file-for-the-go-languageComment by Dustin on Where can I find a Vim syntax file for the go language?Dustin2009-11-18T17:56:24Z2009-11-18T17:56:24ZIt comes with one. Please look first.http://stackoverflow.com/questions/1747275/are-there-really-any-production-issues-in-using-memcached-in-windows/1747803#1747803Comment by Dustin on Are there really any production issues in using memcached in Windows?Dustin2009-11-18T04:01:38Z2009-11-18T04:01:38ZIt's not just yet. We are hoping to get it in the normal memcached build infrastructure to ensure it can be supported first.http://stackoverflow.com/questions/1727540/is-libevent-required-for-building-memcached-for-windows/1730582#1730582Comment by Dustin on Is libevent required for building memcached for Windows?Dustin2009-11-17T05:10:21Z2009-11-17T05:10:21ZIf you don't use libevent, you're not compiling memcached as we distribute at <a href="http://memcached.org/" rel="nofollow">memcached.org</a> but something that someone's gone through some effort to port an older version that is no longer maintained.http://stackoverflow.com/questions/1730679/memcached-crashing-under-moderate-loadComment by Dustin on Memcached crashing under moderate loadDustin2009-11-13T18:43:57Z2009-11-13T18:43:57ZWhich version of memcached? Is the server crashing or the client? Have you captured stats while this is running?http://stackoverflow.com/questions/1672322/how-to-get-the-current-node-name-in-an-erlang-clusterComment by Dustin on How to get the current node name in an erlang cluster?Dustin2009-11-04T08:28:21Z2009-11-04T08:28:21ZPlease note that people come here to have conversations, leave evidence to help others, and build reputation by providing good answers. Asking someone to email you an answer out of the system is somewhat rude.http://stackoverflow.com/questions/1662205/how-to-make-a-git-repository-read-only/1662244#1662244Comment by Dustin on How to make a git repository read-only?Dustin2009-11-02T22:50:32Z2009-11-02T22:50:32Z666 is world readable and writable files. 776 is world and group readable, writable and executable and other users read and write. Not sure where you got the numbers you're recommending, but they're generally dangerous.http://stackoverflow.com/questions/1659752/identifying-sub-class-at-run-time/1659764#1659764Comment by Dustin on identifying sub-class at run timeDustin2009-11-02T06:51:40Z2009-11-02T06:51:40ZI think instanceof is a better approach, but you get my vote for pointing out that this is really a sign that the design is quite wrong.http://stackoverflow.com/questions/1645672/local-branches-with-bazaar/1645709#1645709Comment by Dustin on Local branches with Bazaar?Dustin2009-10-29T21:08:39Z2009-10-29T21:08:39ZI think the "cd" part of that validated the "branches just being separate directories" part of the question. Branches are less useful if I have to reconfigure my tools when I change branches.http://stackoverflow.com/questions/1623411/is-there-a-memcache-catalog/1623496#1623496Comment by Dustin on Is there a memcache "catalog"?Dustin2009-10-26T16:42:48Z2009-10-26T16:42:48Z(and sorry for spelling principle wrong)http://stackoverflow.com/questions/1623411/is-there-a-memcache-catalog/1623496#1623496Comment by Dustin on Is there a memcache "catalog"?Dustin2009-10-26T16:41:13Z2009-10-26T16:41:13ZMemory for a particular application comes and goes in memcached. The app taking up most memory can change throughout the day. The one that's the most active is likely to be using more memory than the one that's the least active. It's pretty easy to get rails to log access so you can at least get a feel. Watch eviction stats and you'll know whether it even matters.http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1598937#1598937Comment by Dustin on Git and Mercurial - Compare and ContrastDustin2009-10-24T04:30:06Z2009-10-24T04:30:06ZMartin, I'm sorry, but hg tags are confusing: <a href="http://pastebin.com/f34398ad8" rel="nofollow">pastebin.com/f34398ad8</a>