Fork me on GitHub
#datomic
<
2016-01-24
>
jimmy14:01:40

hi guys, is it a good idea to store edn in datomic string field ? We can eval it to clojure data structure later ?

robert-stuttaford16:01:48

@nxqd: nothing wrong with it. we do it in a couple places. mostly where we’re just storing stuff that only the client SPA will use

robert-stuttaford16:01:56

i.e. we’d never query on it server side

jimmy16:01:56

yeah of course. I find it's quite convenient in development phase as well. It's easy to shape the data structure without worrying too much about schema. Thanks for answering simple_smile