com.aerospike.client.lua
Class LuaConfig

java.lang.Object
  extended by com.aerospike.client.lua.LuaConfig

public final class LuaConfig
extends java.lang.Object

Lua static configuration variables. These variables apply to all AerospikeClient instances in a single process.


Field Summary
static int InstancePoolSize
          Maximum number of Lua runtime instances to cache at any point in time.
static java.lang.String SourceDirectory
          Directory location which contains user defined Lua source files.
 
Constructor Summary
LuaConfig()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SourceDirectory

public static java.lang.String SourceDirectory
Directory location which contains user defined Lua source files.


InstancePoolSize

public static int InstancePoolSize
Maximum number of Lua runtime instances to cache at any point in time. Each query with an aggregation function requires a Lua instance. If the number of concurrent queries exceeds the Lua pool size, a new Lua instance will still be created, but it will not be returned to the pool.

Constructor Detail

LuaConfig

public LuaConfig()