Commit 6084f69
committed
sdk: Fix
Previously, mutations to objects retrieved from
`LocalFileIdentifiableStore` were never written back to disk.
Only `add()` wrote to the file store; subsequent in-memory changes
were invisible to other processes (e.g. different uWSGI workers)
once the `WeakValueDictionary` cache was evicted.
This was an issue introduced in #370, which removed
`Referable.commit()` and the `LocalFileBackend` class without
replacing the write-back mechanism.
Two fixes are made here:
- `AbstractObjectStore.commit()` is added as a no-op default.
`LocalFileIdentifiableStore` overrides it to re-serialize the
object to its `.json` file.
- `get_item()` now returns the cached object directly on a cache
hit, instead of always re-reading from disk and overwriting
in-memory state. This was a secondary bug that would silently
discard mutations within the same process if the same object
was retrieved more than once.
A regression test (`test_mutation_persistence`) is added that
mutates a stored object, evicts the cache via `gc.collect()`,
and verifies the updated value is read back from disk.LocalFileIdentifiableStore mutation persistence1 parent efea046 commit 6084f69
3 files changed
Lines changed: 55 additions & 8 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | | - | |
72 | 71 | | |
73 | 72 | | |
74 | 73 | | |
75 | 74 | | |
76 | 75 | | |
77 | 76 | | |
78 | | - | |
79 | | - | |
80 | 77 | | |
81 | | - | |
82 | | - | |
83 | | - | |
84 | | - | |
85 | | - | |
| 78 | + | |
86 | 79 | | |
87 | 80 | | |
88 | 81 | | |
| |||
91 | 84 | | |
92 | 85 | | |
93 | 86 | | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
94 | 90 | | |
95 | 91 | | |
96 | 92 | | |
| |||
110 | 106 | | |
111 | 107 | | |
112 | 108 | | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
113 | 121 | | |
114 | 122 | | |
115 | 123 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
62 | 74 | | |
63 | 75 | | |
64 | 76 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| 7 | + | |
7 | 8 | | |
8 | 9 | | |
9 | 10 | | |
| |||
134 | 135 | | |
135 | 136 | | |
136 | 137 | | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
137 | 164 | | |
138 | 165 | | |
139 | 166 | | |
| |||
0 commit comments