Membase is a key-value database management system that supports on-the-wire client protocol compatibility with memcached. However unlike memcached it provides disk persistence and data replication.
Questions tagged [membase]
101 questions
39
votes
1 answer
How to choose between Cassandra, Membase, Hadoop, MongoDB, RDBMS etc.?
Is there a paper/blog-post on when to use Cassandra or Membase or Hadoop or plain old relational databases ? Is there a paper discussing the strengths/weaknesses of each, and on what scenarios either of these technologies should be chosen ?
I am…

Sankar
- 6,192
- 12
- 65
- 89
25
votes
2 answers
What is the difference between Membase and Couchbase?
With the two merging under the same roof recently, it has become difficult to determine what the major differences between Membase and Couchbase. Why would one be used over the other?

James Simpson
- 13,488
- 26
- 83
- 108
23
votes
4 answers
Cannot inherit from final class error
What does this error mean .. It runs fine in Eclipse but not in intellij idea
Exception in thread "main" java.lang.VerifyError: Cannot inherit from final class
at java.lang.ClassLoader.defineClass1(Native Method)
at…

TommyT
- 1,707
- 3
- 17
- 26
10
votes
1 answer
NHibernate and Memcached - Tutorial/Example
I have the Membase server installed with a couple buckets setup and I was looking for a good tutorial or example of how to use this as the 2nd level cache with NHibernate.
I am interested in what a sample configuration would look like and if there…

Brandon
- 10,744
- 18
- 64
- 97
10
votes
3 answers
What is the major difference between Redis and Membase?
What are the major differences between Redis and Membase?

Cory
- 2,797
- 7
- 28
- 28
7
votes
1 answer
Membase can someone explain the idea behind their technology
It is fourth day already since I've started diving into CouchDB specifically Membase (Couchbase), Membase seems really interesting technology for me due to simplicity of administration, their interface is as magical as informal and simple. The way…

Lu4
- 14,873
- 15
- 79
- 132
7
votes
3 answers
Membase vs. Cassandra?
Which is the better NoSQL database for most applications?
Both Cassandra (0.7x) and Membase:
A Key Value Database
Are FAST
Horizontally scalable
May be coupled with Hadoop for Mapreduce processing
Support Increment and Decrement
Cassandra has…

MartysMind
- 71
- 1
- 4
5
votes
1 answer
Tomcat doing 15K req/second on a single server using Jersey Jax-RS
I tried testing things on a VPS, and came close to 10K requests per second, and that was a simple 'hello world' servlet, let alone making a call to membase.
My VPS was a 2 x Intel Xeon X5570, quad-core “Nehalem” architecture.
Note: I'm not a java…

codecompleting
- 9,251
- 13
- 61
- 102
5
votes
2 answers
is membase a good persistence layer for a erlang gamer server?
I aim to create a browser game where players can set up buildings.
Each building will have several modules (engines, offices,production lines, ...). Each module will have enentually one or more actions running, like creation of 2OO 'item X' with…

lud
- 1,941
- 20
- 35
5
votes
1 answer
Quick Reference Guide to Various NoSQL Databases
I'm looking for one place that summarizes the main properties of the NoSQL databases that I keep seeing referenced - in particular, MongoDB, Riak, Redis, Memcached, Membase, and Cassandra. Types of queries, acid, architecture for/properties of…

Loren
- 13,903
- 8
- 48
- 79
5
votes
3 answers
How do I keep existing data in couchbase and only update the new data without overwriting
So, say I have created some records/documents under a bucket and the user updates only one column out of 10 in the RDBMS, so I am trying to send only that one columns data and update it in couchbase. But the problem is that couchbase is overwriting…

ramu
- 1,325
- 2
- 17
- 25
5
votes
1 answer
Couchbase 2.0 vs Couchbase 1.8?
I'm evaluating some database possibilities for a large-scale (many billions of entries, many terabytes of data) storage solution where we will do random primary key-lookups almost exclusively.
Given it's capabilities, Membase (Couchbase 1.8) looks…

Joel Westberg
- 2,656
- 1
- 21
- 27
4
votes
1 answer
Erlang, membase and comet
I was wondering if someone had already use this three technologies together. I know Erlang and Comet are widely used, buy I can't find anything related of Comet + Membase or Erlang + Membase. Are them together a bad idea for some reason?
I'm doing…

Greyes
- 113
- 5
4
votes
1 answer
Couchbase/Membase: Moxi proxy downstream timeout SERVER_ERROR
I have a live Couchbase cluster on two Amazon EC2 instances (version 1.8.0) and about 5 application servers each running PHP with moxi clients on them. Once in a while, Moxi will return a SERVER_ERROR when attempting to access data. This happens…

Fragsworth
- 33,919
- 27
- 84
- 97
3
votes
2 answers
Memcached Storing user accounts
I'm curious about speeding up my site using memcache. Now currently I have a mysql table with columns for a key and email address, users log in using their key and I query the database to check if it's correct. The email is used incase they forget…
user1104791