diff src/luan/modules/lucene/PostgresBackup.java @ 1434:56fb5cd8228d

cache compiled code in temp files
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 29 Dec 2019 15:25:07 -0700
parents 103d0ce70385
children 851b9a48cc44
line wrap: on
line diff
--- a/src/luan/modules/lucene/PostgresBackup.java	Tue Dec 24 17:57:47 2019 -0700
+++ b/src/luan/modules/lucene/PostgresBackup.java	Sun Dec 29 15:25:07 2019 -0700
@@ -163,7 +163,7 @@
 	}
 
 	private static Object eval(String s,LuanTable env) throws LuanException {
-		LuanFunction fn = env.luan().load( "return "+s, "PostgresBackup", env );
+		LuanFunction fn = env.luan().load( "return "+s, "PostgresBackup", false, env );
 		return fn.call();
 	}