Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
8answers
5k views

Alternative to BerkeleyDB?

I'm looking for a dbm-like library that I can use in place of Berkeley DB, which I'm currently using. My main reason for switching is the licensing fees for BDB are pretty high (free for open source ...
8
votes
1answer
445 views

Lightweight B-tree library for Java?

Can anyone recommend a lightweight, fast, and hopefully stable B-tree (or similar) library for Java? Essentially I'm looking for an on-disk map; something along the lines of BerkeleyDB JE, except I ...
7
votes
1answer
251 views

Pros and cons of Perl DBM implementations? (GDBM, Berkeley DB, etc.) [closed]

I've used GDBM and Berkeley DB/DB_File for earlier Perl projects, but should I be using them for new ones? What are the pros and cons of different Perl DBM implementations? (Related: Are tools like ...
6
votes
3answers
618 views

How do I efficiently empty a Perl DBM file?

I've inherited a piece of code with a snippet which empties the database as follows: dbmopen (%db,"file.db",0666); foreach $key (keys %db) { delete $db{$key}; } dbmclose (%db); This is usually ...
3
votes
5answers
114 views

Any DBM for .NET?

I'm looking for a simple DBM library such as BerkeleyDB or Kyoto Cabinet, but natively working for .NET. I need to manage more than one million records (maybe ten millions), and possibly in a ...
3
votes
2answers
357 views

Does Python's shelve module use memory-mapped IO?

Does anyone know if Python's shelve module uses memory-mapped IO? Maybe that question is a bit misleading. I realize that shelve uses an underlying dbm-style module to do its dirty work. What are ...
2
votes
1answer
68 views

Perl DBM vs. Storable

for my current project i need to store a little database on disk, that i read once my program runs and write it once. I have looked into perls DBM functionality and from what I understand it provides ...
2
votes
1answer
119 views

DBM::Deep: Problems with transactions

I've never done transactions (in terms of programming), therefore I don't know if there is something wrong with my script or something else: #!/usr/bin/env perl use warnings; use 5.012; use ...
1
vote
1answer
133 views

Is Python DBM really fast?

I was thinking that native DBM of Python should be quite faster than NOSQL databases such as Tokyo Cabinet, MongoDB, etc (as Python DBM has lesser features and options; i.e. a simpler system). I ...
1
vote
1answer
52 views

Linux - HTPASSWD file too big? (more than 2000 users)

I got here a quite huge HTPASSWD file which stores the users and their encrypted passwords. This file is used to authenticate users using HTTP. I got more than 2000 entries (users) in this file. The ...
1
vote
2answers
258 views

Using the dbm module in Python 3

I'm learning about database files and the dbm module in Python 3.1.3, and am having trouble using some of the methods from the anydbm module in Python 2. The keys method works fine, import dbm db = ...
1
vote
1answer
395 views

Oracle tns listener error

I've just installed Oracle 10g When I try to connect to oracle db i get an error: could not start OracleOraHome92TNSListener when i got to services and try to start it, it says that the file ...
1
vote
2answers
345 views

Python DBM Module for Windows?

I would like to use the dbm module on my Windows machine, but it is currently only supported on Unix. http://docs.python.org/library/dbm.html Does anyone know of a similar module with similar syntax ...
1
vote
4answers
520 views

How do I access random element in a Perl DBM hash?

I have a Perl DBM hash containing a list of URLs that I want to pick randomly from to load balance spidering sites. As a result I want to pick a key at random, or select the nth element (so I can ...
1
vote
1answer
180 views

Why when using DBM with Ruby, db[1] = 2 is ok, but print db[1] will give error?

On Ruby, when using DBM require "dbm" db = DBM.open("somedata") db[1] = 2 # ok p db[1] # gives error does anyone know db[1] = 2 is ok, but printing out db[1] will give error? If it requires ...
1
vote
3answers
342 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 looking for 'better' in ...
0
votes
1answer
61 views

What is a thread-safe DBM library in C?

Does anyone know about a thread-safe DBM-like library with a C API? This is: a persistent hash-table that is thread-safe. Any pointers would be appreciated!
0
votes
1answer
190 views

How to use perl dbmopen on Windows and Linux

I have a perl script that runs fine on Linux but fails on Windows at this point: $freq{total} = 0; dbmopen(%freq,$dictfile,0666) || die "Error: Cannot open dbmfile $dictfile"; $dictfile points to ...
0
votes
2answers
158 views

C Custom Database writing errors

I have an assignment for class that I have to write a program to read and write key, value pairs to disk. I am using a linked list to store the keys, and read in values whenever I need to from disk. ...
0
votes
2answers
68 views

Can I use a filehandle instead of a filename for creating DBM files?

I'm using MLDBM to persist some Perl data structures and I'm wondering if there's an alternative to the following: tie %hash, "MLDBM", $dbm_file, O_CREAT | O_RDWR, 0644; Primarily, I'd like to be ...
0
votes
1answer
72 views

Must the keys and values in a Berkeley DB on Ruby be strings, not int, float, or any other type?

It seems that if I use Berkeley DB (DBM) on Ruby, the hash's keys and values must be strings? Can they be other data type? require 'dbm' d = DBM.open('test1') d[1] = 2 d[123] = 456 d[2] = 2.34 ...
0
votes
3answers
273 views

moving a perl script/dbm to a new server, and shifting out of dbm?

I've been tasked with mirroring a site onto a new server. The old site has a few Perl scripts that, as far as I can see internally (i know nothing about Perl, though I have a pretty good understanding ...
0
votes
1answer
73 views

dbm.error: db type is dbm.bsd, but the module is not available (Python 3.0)

I'm trying to open a shelve file that I created in 2.5, but I get the error I listed in the question title. The data aren't essential, but I really want them. Looking at the lib\dbm\__init__.py ...
0
votes
2answers
337 views

DBM or SQLite in PHP 5.x

We have a client whose site is hosted on a server (I don't want to disclose hosting company name) which does not provide DB functionality. We have developed a very simple CMS based site but out ...
0
votes
2answers
243 views

How can I store a timestamp in a DBM database?

I am implemening simple file-sharing service. Currently I use a file-based database (as it suits my needs). # somewhere in my cgi script sub first_run { my $dbh = ...