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
0
votes
1 answer
Django Can't Read Membase Data?
I have two Membase clients - a Django website and a small python test file. I observed that the data saved by the python file can't be seen by the Django website, it returns None. However, If I save the same data (same keys and values) in the Django…

Dondon Vizcayno
- 21
- 4
0
votes
1 answer
membase server to couchbase server migration : Java client
I was using aspymemcached client to connect to my membase server.
code look like :
public static MemcachedClient MemcachedClient(String bucketName){
URI server1 = new URI("http://192.168.100.111:8091/pools");
URI server2 = new…

Nitin
- 2,701
- 2
- 30
- 60
0
votes
1 answer
Understanding Moxi stats field "total_connections"
What do the following fields means in the Moxi stats counters?
I understand the "curr_connections" which counts both client connections into moxi and also moxi’s connections to downstream Couchbase servers.
What does the counter "total_connections"…

minion
- 540
- 8
- 21
0
votes
1 answer
Membase caching pattern when one server in cluster is inaccessible
I have an application that runs a single Membase server (1.7.1.1) that I use to cache data I'd otherwise fetch from our central SQL Server DB. I have one default bucket associated to the Membase server, and follow the traditional data-fetching…

Ka Wai Cheung
- 241
- 1
- 2
- 11
0
votes
1 answer
Couchbase server timeout issue in cluster with 2 nodes
We have 2 nodes in the cluster in couchbase which have 4 buckets shared between them, When we are trying to insert data in the buckets using JAVA api we get the following errors :-
`2013-10-08 19:54:29.193 WARN…

ramu
- 1,325
- 2
- 17
- 25
0
votes
1 answer
Pull the metrics out of couchbase like QPS, gets/sec etc and plot them on the graph as Couchbase UI does?
Pull the metrics out of couchbase like QPS, gets/sec etc and plot them on the graph as Couchbase UI does .. As I have a personal program which continuosly can poll couchbase for all this data and plot them on a graph .. .
IS there an API call I can…

TommyT
- 1,707
- 3
- 17
- 26
0
votes
1 answer
Couchbase Java API and javascript view not returning value for a specific Key
I am using couchbase API in java
View view = client.getView("dev_1", "view1");
Query query = new Query();
query.setIncludeDocs(true);
query.setKey(this.Key);
ViewResponse res=client.query(view, query);
for(ViewRow row: res)
…

TommyT
- 1,707
- 3
- 17
- 26
0
votes
1 answer
Membase logical cache sections
Does membase has a notion of cache sections?
such as:
Users cache, News cahce, Item cache etc.
When I am storing users, I want to be able to store and read from the cache section. Likewise for Items store and read from Item cache.
Is this…

DarthVader
- 52,984
- 76
- 209
- 300
0
votes
1 answer
How to do query in Membase?
Any API for this?
What about query with conditions on key or values ?
I know there is a tap.py, which can dump all contents from Membase, but it it just a tool.

Hardbone
- 327
- 1
- 3
- 16
0
votes
1 answer
Adding a new Couchbase bucket caused BucketNotFound error
I'm using Couchbase 1.8.0 on Mac OS X along with the Ruby libraries to access it. I deleted the default bucket and created by own bucket called 'mybucket', with the password 'password'. I'm accessing the bucket with the following Ruby code:
url =…

joelpoloney
- 419
- 4
- 13
-1
votes
1 answer
How to run Couchbase on multiple server or multiple AWS instances?
I am trying to evaluate couchbase`s performance on multiple nodes. I have a Client that generates data for me based on some schema(for 1 node currently, local). But I want to know how I can horizontally scale Couchbase and how it works. Like If I…

RamPrasadBismil
- 579
- 2
- 10
- 30