You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When rows in a particular table are deleted in Android Room Database using the query DELETE FROM table, the rows are actually deleted from the table but, their equivalent memory is not freed. This is causing memory to accumulate each time a refresh takes place and new data is added which doesnt use the unused memory but creates it's own seperate memory space.
The text was updated successfully, but these errors were encountered:
When rows in a particular table are deleted in Android Room Database using the query
DELETE FROM table
, the rows are actually deleted from the table but, their equivalent memory is not freed. This is causing memory to accumulate each time a refresh takes place and new data is added which doesnt use the unused memory but creates it's own seperate memory space.The text was updated successfully, but these errors were encountered: