Will SolrMarc in fact compile/load your .bsh script only once, and then
call the specified function in it, as opposed to re-loading/compiling on
every invocation or every record?
I guess if I put some static methods in my .bsh script that
lazy-initialize their values (if static_variable == nil {
static_variable = something;} return static_variable)... assuming
SolrMarc in fact loads/compiles the .bsh only once per SolrMarc
execution... I think that would do it? Any better ideas or problems
with my assumptions?
Jonathan