Details
-
Type:
Enhancement
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Completed
-
Affects Version/s: 0.0.5
-
Fix Version/s: 0.2.0-beta9
-
Component/s: None
-
Labels:
-
Environment:Android
Description
If you want to use nREPL on Android (currently only possible with sattvik's fork of Clojure) then you need bigger stack sizes than Android's default 8k to eval even moderately complex expressions. For comparison: A regular JVM on a PC has default stack sizes around 256k ... 512k depending on platform.
In nrepl.clj, modify
(doto (Thread. r)
(.setDaemon true))))))
to read
(doto (Thread. (.getThreadGroup (Thread/currentThread)) r "nREPL" 524288) ; 512k generous stack size
(.setDaemon true))))))
Note: There are warnings here http://bit.ly/u86tF1 about choosing a good stack size but since in practice nREPL seems to have <10 threads running with 1 active client connection we can be generous here.
The more advanced version would be to make this somehow configurable but that'd probably be over-engineering things.
Noted, thank you. I'll try to make sure a provision for this gets into the next significant release.
My first inclination is to ensure that the stack size is configurable; a hardcoded size would likely be just as inappropriate in some environments as the system default.