So i have a problem where i do esentially
PHP Code:
create_entity(bunch of entities);
//some other point when user does something
delete_entity(bunch of entities);
create_entity(bunch of entities);
this results in "ED_Alloc: no free edicts"
which crashes the server.
if i add a half second delay inbetween delete and create, it works just fine. However, if it's a .1 second delay it crashes as it did without any delay.
Is there some sort of garbage collection that's going on in the abckground? and further if there is, is there a better way of letting it gc without just adding a magical delay in there?
Thanks