5
votes
5answers
394 views
BerkeleyDB Concurrency
This isn't a question, just more seeking expert advice.
What's the optimal level of concurrency that the C++ implementation of BerkeleyDB can reasonably support? How many threa …
0
votes
1answer
30 views
can a berkeley database be opened and accessed from multiple programs at the same time?
Hi,
according to the Berkeley documentation the Transactional (TS) and the Concurrent Datastore version of the Database, multiple threads may access (and change) the database.
Do …
0
votes
1answer
31 views
Berkeley Db platform migration
I have a large (several Gb) berkeley db that I am thinking of migrating from windows (2K) to Linux (either Redhat or Ubuntu). I am not sure how to go about this. Can I merely move …
1
vote
3answers
240 views
Fast, scalable hash lookup database? (Berkeley’ish)
I use and love Berkeley but it seems to bog down once you get near a million or so entries, especially on the inserts. I've tried memcachedb which works but it's not being maintai …
0
votes
1answer
52 views
Problem with Berkeley DB and C++
I'm trying to write a simple C++ program that uses Berkeley DB for storage. The key of the database is of type time_t and the data is an integer.
I need to take the difference bet …
2
votes
6answers
164 views
Is Berkeley DB XML a viable database backend?
Apparently, BDB-XML has been around since at least 2003 but I only recently stumbled upon it on Oracle's website: Berkeley DB XML. Here's the blurb:
Oracle Berkeley DB XML is a …
2
votes
2answers
63 views
A UML way to describe a key/value datastore ?
Hi all,
I'm currently writing the documentation for a database using berkeleyDB. I'd like to draw UML diagram describing the keys and the values of the datastores. Is there a 'stan …
-1
votes
2answers
115 views
How much does Berkley DB cost? [closed]
Berkley DB seems to be a greate high performance database for my needs in a commercial application. I was not able to find any pricing information on the web or google. Does someon …
0
votes
0answers
56 views
Compiling BerkeleyDB-C on Fedora
Hi all,
I'm trying to compile BerkeleyDB-C 4.7.25 on Linux but .configure gives me an error I don't know how to fix.
uname -s -p -m -i -o -v
Linux #1 SMP Wed May 27 17:14:37 EDT 2 …
1
vote
3answers
250 views
Where can I find examples of bsddb in use?
I've spent hours searching for examples of how to use the bsddb module and the only ones that I've found are these (from here):
data = mydb.get(key)
if data:
doSomething(data) …
1
vote
2answers
77 views
Ideal string length for DBM database?
When using a DBM database (e.g. Berkeley or GDBM), is it better to store data using fewer long strings or more short strings? I can easily structure my data either way. I'm looki …
1
vote
4answers
441 views
Building a Java based stock trading application, need pointers for technologies to use
I am building an application in Java (with a jQuery frontend) that needs to talk to a third party application. it needs to update the interface every two seconds at the most.
Woul …
0
votes
3answers
120 views
How would you represent a relational entity as a single unit of retrievable data in BerkeleyDB?
BerkeleyDB is the database equivalent of a Ruby hashtable or a Python dictionary except that you can store multiple values for a single key.
My question is: If you wanted to stor …
1
vote
3answers
150 views
How do you talk to a BerkeleyDB database from Ruby or Ruby on Rails?
I have no idea how I would set up a BerkelyDB database in a Ruby or Rails project.
Does anyone have any experience configuring one, that they could talk about?
Maybe using Active …
0
votes
1answer
105 views
Does Berkeley DB java edition, support saving vectors
I am getting the following stack trace. Just want to know what your first impression is. Does it seem to be saying that Vectors cannot be saved to the Berkeley DB. What else can I …
