summaryrefslogtreecommitdiff
path: root/lua/tests/manual/newline_tables.lua
AgeCommit message (Collapse)Author
2021-08-20feat(performance): Major performance improvements using async v2 from ↵TJ DeVries
@oberblastmeister (#987) * start: Working w/ async jobs * short circuit to using bad finder if you pass writer.
2021-07-23chore: use stylua for formatting (#1040)Simon Hauser
* chore: stylua job and config * reformat with stylua
2020-10-07feat: Use metatables to use less memory (#152)TJ DeVries
Instead of storing everything in key / value pair hashes, we store as much as possible in an array and then reference the items in the array using metatables. This provides us with a much lower memory footprint and just one level of table lookup indirection (so I think the speed will not be noticeably different)
2020-10-06fix: Reduce memory leaks (#148)TJ DeVries
It is not 100% clear that we've gotten ALL the memory leaks, but it seems much much much better and doesn't look like it's going to die immediately or as often anymore :)
2020-09-11feat: add a bit better writer supportTJ DeVries
2020-09-03feat: Major improvements in API. Particularly relating to entries.TJ DeVries
2020-09-03fix: Prevent people from erroring from having new lines in displayTJ DeVries