Socialmetrica/Socialmetrica.package/TweetsCollection.class/instance/store.st

8 lines
278 B
Smalltalk

accessing
store
ReStore isConnected ifFalse: [ self class storeDB]. "Starting the ReStore singleton."
self tweets do: [:each | ReStore evaluateAsTransaction: [
"TO DO: each isNotInDB ->"each store.
"TO DO: each user id isInDB? ifFalse: [ each user store ]"
]
].