Browse thread
[Caml-list] Cross-platform DBM equivalent?
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Pierre Weis <pierre.weis@i...> |
| Subject: | Re: [Caml-list] Cross-platform DBM equivalent? |
> On Thu, Dec 26, 2002 at 09:39:33AM +0100, Alessandro Baretta wrote: > > > > >I am developing an application that needs fast access to persistent > > >configuration data, and I thought that DBM might be a good way to > > >provide that functionality ... As far as I know the best (and simpler) way to do this for reasonable number of URLs bindings (say thousands but not millions) is to create a Hashtlbl.t or Map.t and dump it to file using output_value (then read it back with input_value). In any case, I would start with this solution, since it provides cross-platform persistency with 4 lines of Caml code. A fast and easy way to obtain fast and good results! Merry Christmas :) Pierre Weis INRIA, Projet Cristal, Pierre.Weis@inria.fr, http://pauillac.inria.fr/~weis/ PS: Remember that input_value and output_value are not type safe. Be careful to use some cautious programming methodology, such as the trick I described once in this list, to define your own input and output functions in the same phrase, in order to ensure their provably correlated behaviour. ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners