aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r--bin/OpenSim.ini.example24
1 files changed, 17 insertions, 7 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index cc750a9..26eb8ed 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -745,13 +745,6 @@
745 ;; The trade-off may be increased memory usage by the script engine. 745 ;; The trade-off may be increased memory usage by the script engine.
746 ; ThreadStackSize = 262144 746 ; ThreadStackSize = 262144
747 747
748 ;# {DeleteScriptsOnStartup} {} {Delete previously compiled script DLLs on startup?} (true false) true
749 ;; Controls whether previously compiled scripts DLLs are deleted on sim restart. If you set this to false
750 ;; then startup will be considerably faster since scripts won't need to be recompiled. However, then it becomes your responsibility to delete the
751 ;; compiled scripts if you're recompiling OpenSim from source code and internal interfaces used
752 ;; by scripts have changed.
753 ; DeleteScriptsOnStartup = true
754
755 ;; Set this to true (the default) to load each script into a separate 748 ;; Set this to true (the default) to load each script into a separate
756 ;; AppDomain. 749 ;; AppDomain.
757 ;; 750 ;;
@@ -764,6 +757,23 @@
764 ;; Some Windows users have also reported script loading problems when AppDomainLoading = false 757 ;; Some Windows users have also reported script loading problems when AppDomainLoading = false
765 ; AppDomainLoading = true 758 ; AppDomainLoading = true
766 759
760 ;; Controls whether scripts are stopped by aborting their threads externally (abort) or by co-operative checks from the compiled script (co-op)
761 ;; co-op will be more stable but this option is currently experimental.
762 ;; If moving from co-op to abort, existing script DLLs will need to be recompiled.
763 ;; This currently can only be done manually, either by setting DeleteScriptsOnStartup = true for one run
764 ;; or by deleting the script DLL* files in bin/ScriptEngines/<region-id>/
765 ;; One can move from co-op back to abort without recompilation, but reverting back to co-op again will need script recompile
766 ;; Current valid values are "abort" and "co-op"
767 ; ScriptStopStrategy = abort
768
769
770 ;# {DeleteScriptsOnStartup} {} {Delete previously compiled script DLLs on startup?} (true false) true
771 ;; Controls whether previously compiled scripts DLLs are deleted on sim restart. If you set this to false
772 ;; then startup will be considerably faster since scripts won't need to be recompiled. However, then it becomes your responsibility to delete the
773 ;; compiled scripts if you're recompiling OpenSim from source code and internal interfaces used
774 ;; by scripts have changed.
775 ; DeleteScriptsOnStartup = true
776
767 ;# {DefaultCompileLanguage} {Enabled:true} {Default script language?} {lsl vb cs} lsl 777 ;# {DefaultCompileLanguage} {Enabled:true} {Default script language?} {lsl vb cs} lsl
768 ;; Default language for scripts 778 ;; Default language for scripts
769 ; DefaultCompileLanguage = "lsl" 779 ; DefaultCompileLanguage = "lsl"