when running a program that look something like below, the used system memory incrementally went up and the program died with a JVM out of memory error after a few hours of loading very small object files
with Ghidra() as g:
exe = get_next_file()
g.load(exe)
with Session(Backend.engine) as s:
b = g.binary
b.db_add(s)
g.clear()
when running a program that look something like below, the used system memory incrementally went up and the program died with a JVM out of memory error after a few hours of loading very small object files