Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

EDIT: is what I want basically load-string?

Question

In Clojure, if I do:

(require :reload 'foo.bar)

then Clojure looks for src/foo/bar.clj, and reloads it.

Now, I want to do something like this:

(reload-from-string 'foo.bar STR)

the semantics of this would be: reload namespace 'foo.bar, but instead of compiling src/foo/bar.clj, compile STR instead.

How do I define reload-from-string?

Context

I need to hot reload code on a server that is running an Clojure application. I don't want to have to continuously shuffle files back & forth to the server (either via scp, sftp, or fuse/sshfs) in order to reload. Thus, I would prefer to just pass it a string.

Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

You can use read-string and then eval. Keep in mind the risks though. An advantage of splitting them up is you can whitelist what is present in the resulting list before evaling it.

You probably want to bind *read-eval* to false also.

share|improve this answer
If the server is fire walled, the swank session is on a local port, and I ssh-in + do port forwarding, where is the risk? – user1311390 May 15 '12 at 17:45
Doesn't sound like much unless you have an internal intruder. The question wasn't very specific about that though. – Bill May 15 '12 at 18:31
you're right, there were assumptions I did not put down. Your answer is correct for the question as stated. – user1311390 May 15 '12 at 21:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.