<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Matrix in memcache</title>
        <description> Hi all..

I have dense matrix (large sized matrix).Because of its size i could not be
able to kept in memory.So i would like to use memcache.I configured
memcached and is working.
But how can i represent this Matrix input as a key,value pair.Is there any
need to use any Db like MongoDb...

Pls help me to find out the solution

Thank you
Sreejith</description>
        <link>http://www.serverphorums.com/read.php?9,219185,219185#msg-219185</link>
        <lastBuildDate>Thu, 20 Jun 2013 02:58:24 +0200</lastBuildDate>
        <generator>Phorum 5.2.18</generator>
        <item>
            <guid>http://www.serverphorums.com/read.php?9,219185,222944#msg-222944</guid>
            <title>Re: Matrix in memcache</title>
            <link>http://www.serverphorums.com/read.php?9,219185,222944#msg-222944</link>
            <description><![CDATA[ You can store them but it shouldn't be your only copy. I frequently<br />
cache documents in memcache so I don't have to pull them off the<br />
filesystem as often but I do store them in the filesystem. If using a<br />
lot of memory you may have to increase the size of your cache.]]></description>
            <dc:creator>PlumbersStock.com</dc:creator>
            <category>Memcached</category>
            <pubDate>Fri, 29 Oct 2010 03:10:06 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?9,219185,222491#msg-222491</guid>
            <title>Re: Matrix in memcache</title>
            <link>http://www.serverphorums.com/read.php?9,219185,222491#msg-222491</link>
            <description><![CDATA[ No, it's a cache, not a storage solution. When you put things in memcache<br />
you are not guaranteed to be able to retrieve them again.<br />
<br />
<br />
/Henrik<br />
<br />
On Thu, Oct 28, 2010 at 07:23, Sreejith S &lt;srssreejith@gmail.com&gt; wrote:<br />
<br />
&gt; Hi..<br />
&gt; Thnk u for ur reply...<br />
&gt; let me explain my scenario<br />
&gt; On a sample set od 1000 documents i am generating a matrix of (may be)<br />
&gt; 1000000 * 1000 .I have much larger document set than this say 50000.<br />
&gt; So can memcahe be able to store these huge matrix representation as u<br />
&gt; said??<br />
&gt;<br />
&gt; Sreejith<br />
&gt;<br />
&gt;<br />
&gt;<br />
&gt; On Thu, Oct 28, 2010 at 6:56 AM, PlumbersStock.com &lt;<br />
&gt; michaelm@plumbersstock.com&gt; wrote:<br />
&gt;<br />
&gt;&gt; When dealing with large data sets I sometimes split it into parts that<br />
&gt;&gt; will fit with a master object that stores how many parts it should<br />
&gt;&gt; have. Of course it could still fall out of cache but it's no worse<br />
&gt;&gt; than if it was one large object that fell out of cache and possible<br />
&gt;&gt; better if you kept a primary copy somewhere so you only have to grab<br />
&gt;&gt; the missing chunks from it.<br />
&gt;&gt;<br />
&gt;&gt; big_object: 5<br />
&gt;&gt; big_object_0: data<br />
&gt;&gt; big_object_1: data<br />
&gt;&gt; big_object_2: data<br />
&gt;&gt; big_object_3: data<br />
&gt;&gt; big_object_4: data<br />
&gt;<br />
&gt;<br />
&gt;]]></description>
            <dc:creator>Henrik Schröder</dc:creator>
            <category>Memcached</category>
            <pubDate>Thu, 28 Oct 2010 10:50:10 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?9,219185,222453#msg-222453</guid>
            <title>Re: Matrix in memcache</title>
            <link>http://www.serverphorums.com/read.php?9,219185,222453#msg-222453</link>
            <description><![CDATA[ Hi..<br />
Thnk u for ur reply...<br />
let me explain my scenario<br />
On a sample set od 1000 documents i am generating a matrix of (may be)<br />
1000000 * 1000 .I have much larger document set than this say 50000.<br />
So can memcahe be able to store these huge matrix representation as u said??<br />
<br />
Sreejith<br />
<br />
<br />
On Thu, Oct 28, 2010 at 6:56 AM, PlumbersStock.com &lt;<br />
michaelm@plumbersstock.com&gt; wrote:<br />
<br />
&gt; When dealing with large data sets I sometimes split it into parts that<br />
&gt; will fit with a master object that stores how many parts it should<br />
&gt; have. Of course it could still fall out of cache but it's no worse<br />
&gt; than if it was one large object that fell out of cache and possible<br />
&gt; better if you kept a primary copy somewhere so you only have to grab<br />
&gt; the missing chunks from it.<br />
&gt;<br />
&gt; big_object: 5<br />
&gt; big_object_0: data<br />
&gt; big_object_1: data<br />
&gt; big_object_2: data<br />
&gt; big_object_3: data<br />
&gt; big_object_4: data]]></description>
            <dc:creator>Sreejith S</dc:creator>
            <category>Memcached</category>
            <pubDate>Thu, 28 Oct 2010 07:30:06 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?9,219185,222406#msg-222406</guid>
            <title>Re: Matrix in memcache</title>
            <link>http://www.serverphorums.com/read.php?9,219185,222406#msg-222406</link>
            <description><![CDATA[ When dealing with large data sets I sometimes split it into parts that<br />
will fit with a master object that stores how many parts it should<br />
have. Of course it could still fall out of cache but it's no worse<br />
than if it was one large object that fell out of cache and possible<br />
better if you kept a primary copy somewhere so you only have to grab<br />
the missing chunks from it.<br />
<br />
big_object: 5<br />
big_object_0: data<br />
big_object_1: data<br />
big_object_2: data<br />
big_object_3: data<br />
big_object_4: data]]></description>
            <dc:creator>PlumbersStock.com</dc:creator>
            <category>Memcached</category>
            <pubDate>Thu, 28 Oct 2010 03:30:07 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?9,219185,219185#msg-219185</guid>
            <title>Matrix in memcache</title>
            <link>http://www.serverphorums.com/read.php?9,219185,219185#msg-219185</link>
            <description><![CDATA[ Hi all..<br />
<br />
I have dense matrix (large sized matrix).Because of its size i could not be<br />
able to kept in memory.So i would like to use memcache.I configured<br />
memcached and is working.<br />
But how can i represent this Matrix input as a key,value pair.Is there any<br />
need to use any Db like MongoDb...<br />
<br />
Pls help me to find out the solution<br />
<br />
Thank you<br />
Sreejith]]></description>
            <dc:creator>Sreejith S</dc:creator>
            <category>Memcached</category>
            <pubDate>Fri, 22 Oct 2010 06:40:06 +0200</pubDate>
        </item>
    </channel>
</rss>
