Programming Topic


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Programming Topic
# 1  
Old 02-18-2011
Programming Topic

Greetings friends, I was looking for something about <i>Lua Script Language<i/> and I didn'y find anything, and then I had a thought that It'd be easy if in the Programming Topic there are subtopics with is organized by programming languages.

Just a thought
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

How to close a topic?

No wonder that so few topics are closed. Looking for the fourth time as I do not find! (4 Replies)
Discussion started by: popescu1954
4 Replies

2. News, Links, Events and Announcements

New off topic forum

we now have an off topic forum here : https://www.unix.com/forumdisplay.php?s=&forumid=54 everyone say thanks to Neo!:p (0 Replies)
Discussion started by: norsk hedensk
0 Replies
Login or Register to Ask a Question
TM::ResourceAble::MLDBM(3pm)				User Contributed Perl Documentation			      TM::ResourceAble::MLDBM(3pm)

NAME
TM::ResourceAble::MLDBM - Topic Maps, DBM Storage (synchronous) SYNOPSIS
use TM::ResourceAble::MLDBM; { my $tm = new TM::ResourceAble::MLDBM (file => '/tmp/map.dbm'); # modify the map here..... } # it goes out of scope here, and all changes are written back automagically # later in the game { my $tm = new TM::ResourceAble::MLDBM (file => '/tmp/map.dbm'); # we are back in business, no sync necessary } DESCRIPTION
This package just implements TM with a BerkeleyDB store. Unlike TM::Materialized::MLDBM this module does not need explicit synchronisation with the external resource (the DBM file here). It ties content-wise with the DBM file at constructor time and unties at DESTROY time. This implementation technique is not so memory-efficient as I had thought. Whenever an assertion or a toplet is referenced, the whole block of toplets, resp. assertions, is loaded from the DB database. For small maps this is really fast, but it can become a drag for larger maps. See TM::ResourceAble::BDB for a more efficient solution. NOTE: Be careful to use this together with TM::Index::*. The indices will be held as part of the map, and so will be stored along side. If you heavily use the map, this can result in many swapin/swapouts. Better to look at TM::IndexAble for that matter. INTERFACE
Constructor The constructor expects a hash with the following keys: file (no default) This contains the file name of the DBM file to tie to. SEE ALSO
TM, TM::Materialized::MLDBM AUTHOR INFORMATION
Copyright 200[68], Robert Barta <drrho@cpan.org>, All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. http://www.perl.com/perl/misc/Artistic.html perl v5.10.1 2010-07-18 TM::ResourceAble::MLDBM(3pm)