Browse thread
Re: one-time initialization
- Michael Hicks
[
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: | Michael Hicks <mwh@d...> |
| Subject: | Re: one-time initialization |
> val global = (ref (fun () -> failwith "not initialized") : > (mytype -> unit) ref) > > let init i = global := fun () -> i > > let f () = ... (!global ()) > let g () = (!global ()) ... > > this at least has the advantage that you don't have to have a big > hairy pattern match in every function. I've tried this and similar alternatives using classes and records, but they all end up being slower than the naive approach I presented before. :( One thing I've thought of is to make the entire program a bunch of functors, parameterized by their external module references and an additional "initialization information" module. Then, the toplevel "main" module would execute some code to initialize the "initialization" module, and then invoke all of the functors to construct a custom program based on the initialization information. Since my program is a long-running server application, it might be worth this one-time cost. On the other hand, I'm not sure the gain will be worth re-architecting the whole program ... Mike -- Michael Hicks Ph.D. Candidate, the University of Pennsylvania http://www.cis.upenn.edu/~mwh mailto://mwh@dsl.cis.upenn.edu "I worked with an individual who plugged his power strip back into itself and for the life of him could not understand why his computer would not turn on."