Fork me on GitHub
#datomic
<
2023-01-27
>
fmnoise17:01:59

Does datomic-free still exist? How I can download it? downloads at http://my.datomic.com only points to pro version

Robert A. Randolph19:01:12

@U4BEW7F61 Datomic free is no longer acquirable. We suggest using dev-local for development and CI purposes. I believe Jaret has communicated that to you in the past before. Have you looked into dev-local, and does it meet your needs?

fmnoise20:01:25

thanks @UEFE6JWG4 I'll check it out

hanDerPeder20:01:05

I cant seem to make fulltext search case-insensitive. Is this possible?

caleb.macdonaldblack21:01:23

defn case-insensitive-get-email
      [email]
      (d/q '[:find ?lowercaseEmail .
             :in $ ?email
             :where
             [?e :user/email ?originalEmail]
             [(.toLowerCase ^String ?originalEmail) ?lowercaseEmail]
             [(= ?lowercaseEmail ?email)]]
      db (.toLowerCase email)
           )
      )

hanDerPeder07:01:36

This does a full scan of the attribute. Asking about the lucene fulltext index.

hanDerPeder11:01:16

star works, foo* 👍

caleb.macdonaldblack19:01:19

Ah, my bad. Glad you found it.