After I called fds_gc(), the dirty record was not reset to zero.What is the reason for this?
After I called fds_gc(), the dirty record was not reset to zero.What is the reason for this?
Hello,
fds_gc() is an asynchronous function which means it will return immediately after scheduling the garbage collection but before it is actually performed. The FDS callback will be invoked the GC is complete. So, did you wait for the GC complete event before checking the record status again?
Best regards,
Vidar
Hello,
fds_gc() is an asynchronous function which means it will return immediately after scheduling the garbage collection but before it is actually performed. The FDS callback will be invoked the GC is complete. So, did you wait for the GC complete event before checking the record status again?
Best regards,
Vidar