Search found 3 matches

by SyntheticDreamCorp
Thu Jan 16, 2020 9:32 pm
Forum: Support and Development
Topic: ProFi is noticeably improving game performance
Replies: 2
Views: 2804

Re: ProFi is noticeably improving game performance

It's impossible to really tell if you don't provide code where it happens and users here can poke and prod at it. You should either post your source, or recreate the effect in a simplified love project and post that (that's usually simplest) My instinct with situations like this would be to investig...
by SyntheticDreamCorp
Mon Jan 13, 2020 1:37 am
Forum: Support and Development
Topic: [SOLVED] How to create a simple encryption for a lua table?
Replies: 7
Views: 7963

Re: How to create a simple encryption for a lua table?

I think serialization is probably more the word you're looking for, than encryption. What you want is definitely possible, but if your save data contains nested tables, you're going to have to write a more involved program that can serialize and deserialize recursively. It would probably be easier t...
by SyntheticDreamCorp
Sat Jan 11, 2020 5:26 am
Forum: Support and Development
Topic: Execution speed varies wildly (47x) between (but not during) runs
Replies: 15
Views: 9500

Re: Execution speed varies wildly (47x) between (but not during) runs

I think you might be experiencing what Cloudflare did when they tried to accurately benchmark LuaJIT. I used LuaJIT's dump module to get a full dump of the traces and the resulting IR. Of course, given the nature of LuaJIT, I imagine every run of the program will dump something unique. What's common...