Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8148033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T14:33:34+00:00 2026-06-06T14:33:34+00:00

With Clojure (and other Lisp dialects) you can modify running code. So, when a

  • 0

With Clojure (and other Lisp dialects) you can modify running code. So, when a function is modified during runtime is that change made available to multiple threads?

I’m trying to figure out how it works technically in a concurrent setting: if several threads are using a function foo, what happens when I redefine (say using defn) the function foo?

There has to be some synchronization going on: when and how does such synchronization happen and what does it cost?

Say on a JVM, is the function referenced using a volatile reference? If so, does it mean every single time there’s a “function lookup” then one has to pay the volatile cost?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T14:33:36+00:00Added an answer on June 6, 2026 at 2:33 pm

    In Clojure functions are instances of the IFn class and they are almost always stored in vars. vars are Clojures mechanism for thread local values.

    • when you define a function that sets the “root binding” of the var to reference the function
    • threads other threads get whatever the the current value of the root binding for the var but can’t change the value. this prevents any two threads from having to fight over the value of the var because only the root thread can set the value.
    • threads can choose to use a new value of the var if they need to, but calling binding which gives then their own thread local value that they are free to change at will because no other thread can read it.

    A good understanding of vars is well worth a little study, they are a very useful concurrency device once you get used to them.

    ps: the root thread is usually the REPL
    pss: you are of course free to store your functions in something other than vars, if for instance you needed to atomically update a group of functions, though this is rare.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can I use other JVM languages besides Java (e.g. jruby, jython, clojure) to program
I know that this may sound like blasphemy to Lisp aficionados (and other lovers
I just started experimenting with Clojure and it is bugging me that I can't
Can someone suggest articles that explain the concept of Homoiconicity, especially using Clojure. Why
I wondering if there is a set of Emacs Lisp code that implements some
I have been rewriting Land Of Lisp's orc-battle game in Clojure. During the process
If I understand correctly Clojure can return lists (as in other Lisps) but also
Clojure offers a macro called doto that takes its argument and a list of
Clojure structs can be arbitrarily extended, adding new fields. Is it possible to extend
Context Clojure Agents are NOT sent new values. They are sent a function which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.