Hello folks, wondering if anyone is actively using...
# lucee
j
Hello folks, wondering if anyone is actively using lucee fuseless (AWS Lambda) and has installed an extension into the JAR
z
@foundeo can answer 🙂
j
definitely my next stop
We have it running and doing everything we want except the S3, so very pleased with it
f
I don’t have an awesome solution for that yet, I think you can use the
LUCEE_EXTENSIONS
environment var, but that would cause it to have to download and install the extension on every cold start. Ideally you need to modify the lucee light jar, and inject the extension in there. When fuseless deploys it has to deploy lucee to
/tmp
on AWS Lambda because that is the only writable media on lambda, so another option is that you could have your lambda copy over the extension into
/tmp/lucee/lucee-server/deploy
(guessing on the path, might be missing a folder)
j
we have been attacking it from recompiling the jar and think we are having success there, definitely appreciate the suggestion, the last one of injecting into the temp is interesting way to attack it as well
f
let me know if you get it working @John
c
I'm implementing S3 in fuseless via https://github.com/jcberquist/aws-cfml