protorepl

jasongilman 2016-03-26T13:46:32.000015Z

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

jasongilman 2016-03-26T13:51:01.000016Z

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/

mrchrisadams 2016-03-26T17:12:14.000018Z

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

jasongilman 2016-03-26T17:33:09.000019Z

Thanks! That's great to hear.

jasongilman 2016-03-26T17:34:10.000020Z

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.

jasongilman 2016-03-26T17:35:07.000023Z

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.