Database handling with 2 processes

前端 未结 4 1855
甜味超标
甜味超标 2021-01-01 12:32

I have a an application that has 2 parts.

  • A service which creates content.
  • An application that uses the content

Each of these run as di

4条回答
  •  独厮守ぢ
    2021-01-01 13:11

    Using a content provider is one option. Another is to take a look at Berkeley DB. The BDB SQL API is SQLite compatible and the BDB lock manager allows multiple threads and/or processes to read/write to the database concurrently.

提交回复
热议问题