What's the difference between commit() and apply() in SharedPreferences

后端 未结 8 2113
你的背包
你的背包 2020-11-22 10:03

I am using SharedPreferences in my android app. I am using both commit() and apply() method from shared preference. When I use AVD 2.3

相关标签:
8条回答
  • 2020-11-22 10:11

    Use apply().

    It writes the changes to the RAM immediately and waits and writes it to the internal storage(the actual preference file) after. Commit writes the changes synchronously and directly to the file.

    0 讨论(0)
  • 2020-11-22 10:14

    I'm experiencing some problems using apply() instead commit(). As stated before in other responses, the apply() is asynchronous. I'm getting the problem that the changes formed to a "string set" preference are never written to the persistent memory.

    It happens if you "force detention" of the program or, in the ROM that I have installed on my device with Android 4.1, when the process is killed by the system due to memory necessities.

    I recommend to use "commit()" instead "apply()" if you want your preferences alive.

    0 讨论(0)
  • 2020-11-22 10:15

    apply() was added in 2.3, it commits without returning a boolean indicating success or failure.

    commit() returns true if the save works, false otherwise.

    apply() was added as the Android dev team noticed that almost no one took notice of the return value, so apply is faster as it is asynchronous.

    http://developer.android.com/reference/android/content/SharedPreferences.Editor.html#apply()

    0 讨论(0)
  • 2020-11-22 10:19
    • commit() is synchronously, apply() is asynchronous

    • apply() is void function.

    • commit() returns true if the new values were successfully written to persistent storage.

    • apply() guarantees complete before switching states , you don't need to worry about Android component lifecycles

    If you dont use value returned from commit() and you're using commit() from main thread, use apply() instead of commit()

    0 讨论(0)
  • 2020-11-22 10:20

    tl;dr:

    • commit() writes the data synchronously (blocking the thread its called from). It then informs you about the success of the operation.
    • apply() schedules the data to be written asynchronously. It does not inform you about the success of the operation.
    • If you save with apply() and immediately read via any getX-method, the new value will be returned!
    • If you called apply() at some point and it's still executing, any calls to commit() will block until all past apply-calls and the current commit-call are finished.

    More in-depth information from the SharedPreferences.Editor Documentation:

    Unlike commit(), which writes its preferences out to persistent storage synchronously, apply() commits its changes to the in-memory SharedPreferences immediately but starts an asynchronous commit to disk and you won't be notified of any failures. If another editor on this SharedPreferences does a regular commit() while a apply() is still outstanding, the commit() will block until all async commits are completed as well as the commit itself.

    As SharedPreferences instances are singletons within a process, it's safe to replace any instance of commit() with apply() if you were already ignoring the return value.

    The SharedPreferences.Editor interface isn't expected to be implemented directly. However, if you previously did implement it and are now getting errors about missing apply(), you can simply call commit() from apply().

    0 讨论(0)
  • 2020-11-22 10:23

    The docs give a pretty good explanation of the difference between apply() and commit():

    Unlike commit(), which writes its preferences out to persistent storage synchronously, apply() commits its changes to the in-memory SharedPreferences immediately but starts an asynchronous commit to disk and you won't be notified of any failures. If another editor on this SharedPreferences does a regular commit() while a apply() is still outstanding, the commit() will block until all async commits are completed as well as the commit itself. As SharedPreferences instances are singletons within a process, it's safe to replace any instance of commit() with apply() if you were already ignoring the return value.

    0 讨论(0)
提交回复
热议问题