1

I'd like to load Akavache data from Swift. I've found myapp.db{-wal,-shm} files under Library/Application Support/MyApp/BlobCache and can read myapp.db, but I'm not sure how to read key-values from the other files.

Is there some documentation somewhere of these file formats?

David Siegel
  • 1,456
  • 10
  • 12

2 Answers2

0

Akavache uses SQLite. Look at the source code of Akavache for hints about the schema.

Geoffrey Huntley
  • 466
  • 1
  • 5
  • 11
0

According to Paul Betts, the Value field of the CacheElement rows are BSON blobs. The files adjacent to the SQLite database file are irrelevant.

David Siegel
  • 1,456
  • 10
  • 12