Re: DB support

2013-09-24 Thread Roberto Spadim
hum, from what i know / remember, memcache don't have:
1)locks like hazelcast,
2)multicast discover,
3)replication,
4)index (memcache is a key-value cache)
5)it's not a sotrage, it's a cache, no storage at harddisk or in other
words, it don't have non volatile memory
6)i don't remember if it have ssl, must check
maybe others features...

you could check others memcache forks, like repcache (for replication)
memcachedb (for storage), or maybe other kind of nosql, like redis
(there's many others), ndb (mysql) memcache port, etc...

2013/9/24 Namita Nair namita.n...@gmail.com:
 Hi All,

 Does memcache has the support of the DB intelligence like hazelcast
 and oracle coherence.

 Thanks and Regards,
 Namita

 --

 ---
 You received this message because you are subscribed to the Google Groups
 memcached group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to memcached+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.



-- 
Roberto Spadim

-- 

--- 
You received this message because you are subscribed to the Google Groups 
memcached group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to memcached+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: DB support

2013-09-24 Thread smallfish
you can try kyoto tycoon or tokyo tyrant.

--
smallfish http://chenxiaoyu.org


On Tue, Sep 24, 2013 at 2:31 PM, Roberto Spadim rspa...@gmail.com wrote:

 hum, from what i know / remember, memcache don't have:
 1)locks like hazelcast,
 2)multicast discover,
 3)replication,
 4)index (memcache is a key-value cache)
 5)it's not a sotrage, it's a cache, no storage at harddisk or in other
 words, it don't have non volatile memory
 6)i don't remember if it have ssl, must check
 maybe others features...

 you could check others memcache forks, like repcache (for replication)
 memcachedb (for storage), or maybe other kind of nosql, like redis
 (there's many others), ndb (mysql) memcache port, etc...

 2013/9/24 Namita Nair namita.n...@gmail.com:
  Hi All,
 
  Does memcache has the support of the DB intelligence like
 hazelcast
  and oracle coherence.
 
  Thanks and Regards,
  Namita
 
  --
 
  ---
  You received this message because you are subscribed to the Google Groups
  memcached group.
  To unsubscribe from this group and stop receiving emails from it, send an
  email to memcached+unsubscr...@googlegroups.com.
  For more options, visit https://groups.google.com/groups/opt_out.



 --
 Roberto Spadim

 --

 ---
 You received this message because you are subscribed to the Google Groups
 memcached group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to memcached+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 

--- 
You received this message because you are subscribed to the Google Groups 
memcached group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to memcached+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: DB support

2013-09-24 Thread RogueWarrior
Stated VERY simply memcached can get and set data in a distributed manner - 
end of story. CouchBase has the support replication and multiple heads and 
consistent hashing. What you want is a very intelligent client that would 
be using couchbase and a BUNCH of specialized code that does not yet exist 
in open source as of today. Not very complex, but it would need to be 
written.



On Tuesday, September 24, 2013 1:16:41 AM UTC-7, Namita Nair wrote:

 Hi All,

 I mean does the memcache automatically load the data if not found in the 
 cache through some configuration like the one present in the hazelcast and 
 oracle coherence.

 Thanks and Regards,
 Namita

 On Tuesday, September 24, 2013 12:01:15 PM UTC+5:30, rspadim wrote:

 hum, from what i know / remember, memcache don't have: 
 1)locks like hazelcast, 
 2)multicast discover, 
 3)replication, 
 4)index (memcache is a key-value cache) 
 5)it's not a sotrage, it's a cache, no storage at harddisk or in other 
 words, it don't have non volatile memory 
 6)i don't remember if it have ssl, must check 
 maybe others features... 

 you could check others memcache forks, like repcache (for replication) 
 memcachedb (for storage), or maybe other kind of nosql, like redis 
 (there's many others), ndb (mysql) memcache port, etc... 

 2013/9/24 Namita Nair namit...@gmail.com: 
  Hi All, 
  
  Does memcache has the support of the DB intelligence like 
 hazelcast 
  and oracle coherence. 
  
  Thanks and Regards, 
  Namita 
  
  -- 
  
  --- 
  You received this message because you are subscribed to the Google 
 Groups 
  memcached group. 
  To unsubscribe from this group and stop receiving emails from it, send 
 an 
  email to memcached+...@googlegroups.com. 
  For more options, visit https://groups.google.com/groups/opt_out. 



 -- 
 Roberto Spadim 



-- 

--- 
You received this message because you are subscribed to the Google Groups 
memcached group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to memcached+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: DB support

2013-09-24 Thread Les Mikesell
On Tue, Sep 24, 2013 at 3:16 AM, Namita Nair namita.n...@gmail.com wrote:
 Hi All,

 I mean does the memcache automatically load the data if not found in the
 cache through some configuration like the one present in the hazelcast and
 oracle coherence.


It is up to the client to obtain/load the data when it is not already
current in the cache.  There may be some clients embedded in database
or database-like packages, but in general your client can use any
persistent data store along with memcache.

-- 
   Les Mikesell
  lesmikes...@gmail.com

-- 

--- 
You received this message because you are subscribed to the Google Groups 
memcached group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to memcached+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.