Fork me on GitHub
#protorepl
<
2016-03-26
>
jasongilman13:03:32

I just released fixes last night for refreshing the REPL and to support Atom 1.7 which is in beta.

jasongilman13:03:01

Next on my list is improving performance when executing a command that returns a lot of data. I'm going to dig into it further but I think the problem is parsing EDN performance. Transit looks like the right solution http://swannodette.github.io/2014/07/26/transit--clojurescript/

mrchrisadams17:03:14

I’ve been a happy user of protorepl for the last few weeks - it’s fantastic :thumbsup:

jasongilman17:03:09

Thanks! That's great to hear.

jasongilman17:03:10

Related to my previous performance comment. I've done some analysis. EDN parsing is the least of my problems. Proto REPL is doubly parsing the EDN but that's only maybe 5% of the total time to display something.

jasongilman17:03:07

I'm guessing I can cut that current time to display results from the REPL down to 30-50% of how long it takes currently through some small changes.