Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Tie::RDBM: Database with unicode support and large tables?

by ph0enix (Friar)
on Nov 27, 2002 at 10:02 UTC ( [id://216037]=perlquestion: print w/replies, xml ) Need Help??

ph0enix has asked for the wisdom of the Perl Monks concerning the following question:

Hi monks

For the application I'm contributing to, we need to use tied hashes because of the big memory requirements. Due to filesize limitations and probably more important problems with concurent acces for updating data I plan to use binding to SQL database instead to a DBM file.

The Tie::RDBM module looks like a probably good solution for only minimal changes need to be done in the existing application code and there is support for nested data structures. The main problem here is the unicode support in keys/values and table size limitations.

The first on my mind was MySQL, but... The created table reports that it's maximum size can be only 4GB. After some tests done It seems to me that I can't use unicode in keys/values directly and I must use decode('utf8', $_) to all values I've get from to obtain unicode string. When using BerkeleyDB there are filters which can be used for that, but what should one use here?

Which database management system should I use? Is there some system which is able to fit my requirements - large tables and native unicode support? I'm using Linux on 32-bit machine.

Any suggestions or comments are welcome.

Replies are listed 'Best First'.
Re: Tie::RDBM: Database with unicode support and large tables?
by EvdB (Deacon) on Nov 27, 2002 at 10:32 UTC
    PostgreSQL has both large tables and optional Unicode support built in.

      Looks working ok, but I still need to use encode('utf8', $_) to convert obtained data into unicode string... In which mode are data red from database if I have use utf8; preset in my script? bytes or utf8?

      Any suggestions or hints?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://216037]
Approved by demerphq
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (5)
As of 2024-04-26 08:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found