Re: Livecode performance problem

2022-08-20 Thread doc hawk via use-livecode
Short version: inserting between is a much slower process than after, as the entire field/string/whatever from the post of insertion has to be moved or otherwise handled. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: Livecode performance problem

2022-08-20 Thread Paul Dupuis via use-livecode
Thank you! The prior solutions have dramatically reduced the time - the WHOLE analytics process in its entirety because of the slowness of my old code was taking HOURS (like 6-10) - and is now down to 30-35 minutes with the prior solutions. I can't wait to tr the combine by columns method to

Re: A few issues with web apps

2022-08-20 Thread J. Landman Gay via use-livecode
On 8/18/22 2:52 PM, I wrote: All in all, everything else works, which is really quite incredible. When I accidentally started replying to Andreas privately instead of to the list (I should pay more attention, geez) he suggested others may want to see my test app. Thanks to Andreas for being

Re: Livecode performance problem

2022-08-20 Thread Alex Tweedly via use-livecode
I can't answer for anyone else, but for me - because I never thought about it :-) Combine by column - never used it before, so never thought of it. It's significantly faster, roughly 40% improvement over the previous best. Note, the spec requires that each line begins with the line number, so

Re: Livecode performance problem

2022-08-20 Thread David Epstein via use-livecode
I didn’t text the speed, but why not put fld A into x[1] put fld B into x[2] put fld C into x[3] put fld D into x[4] combine x by column return x > > I have a set of fields, call them A, B, C, and D. Each has the same > number of lines. Each field has different text (per line) > > I need to

Re: A few issues with web apps

2022-08-20 Thread Kevin Miller via use-livecode
Don't worry the goal is for zero workarounds by the time we're ready to ship GM. These things are just there to keep you going in the mean time. Kind regards, Kevin Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/ LiveCode: Develop Yourself On 19/08/2022, 18:16, "use-livecode on