You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now in my CLJS app, I have an app-state atom that I'm using to keep track of the application's state. I'm currently persisting the whole thing to local-storage with your library and it works great. However there are a couple of keys in the atom which I would like to avoid reading from / writing to local-storage if possible. One of the keys is a string value that I just need to avoid persisting and the other is a core.async channel which I want to recreate every time the app starts. Is there an easy way to make this happen?
The text was updated successfully, but these errors were encountered:
Hello,
Right now in my CLJS app, I have an
app-state
atom that I'm using to keep track of the application's state. I'm currently persisting the whole thing to local-storage with your library and it works great. However there are a couple of keys in the atom which I would like to avoid reading from / writing to local-storage if possible. One of the keys is a string value that I just need to avoid persisting and the other is acore.async
channel which I want to recreate every time the app starts. Is there an easy way to make this happen?The text was updated successfully, but these errors were encountered: