【2021年更新】
これを読んでいる人は、 AceBaseをチェックすることをお勧めします。AceBase は、ブラウザ データベースとサーバー データベースの間での保存と同期を容易にするリアルタイム データベースです。ブラウザーでは IndexedDB を使用し、サーバー側では独自のバイナリ db 形式または SQL Server / SQLite ストレージを使用します。MySQL ストレージもロードマップに含まれています。オフライン編集は再接続時に同期され、クライアントは Websocket (高速!) を通じてリモート データベースの変更をリアルタイムで通知されます。
これに加えて、AceBase には「ライブ データ プロキシ」と呼ばれる独自の機能があり、メモリ内オブジェクトへのすべての変更を永続化し、ローカル データベースとサーバー データベースに同期できるため、データベースのコーディングを完全に忘れてプログラミングすることができます。あたかもローカル オブジェクトのみを使用しているかのように。オンラインでもオフラインでも構いません。
次の例は、ブラウザーでローカルの IndexedDB データベースを作成する方法、ローカル データベースと同期するリモート データベース サーバーに接続する方法、およびそれ以上のデータベース コーディングを完全に排除するライブ データ プロキシを作成する方法を示しています。
const { AceBaseClient } = require('acebase-client');
const { AceBase } = require('acebase');
// Create local database with IndexedDB storage:
const cacheDb = AceBase.WithIndexedDB('mydb-local');
// Connect to server database, use local db for offline storage:
const db = new AceBaseClient({ dbname: 'mydb', host: 'db.myproject.com', port: 443, https: true, cache: { db: cacheDb } });
// Wait for remote database to be connected, or ready to use when offline:
db.ready(async () => {
// Create live data proxy for a chat:
const emptyChat = { title: 'New chat', messages: {} };
const proxy = await db.ref('chats/chatid1').proxy(emptyChat); // Use emptyChat if chat node doesn't exist
// Get object reference containing live data:
const chat = proxy.value;
// Update chat's properties to save to local database,
// sync to server AND all other clients monitoring this chat in realtime:
chat.title = `Changing the title`;
chat.messages.push({
from: 'ewout',
sent: new Date(),
text: `Sending a message that is stored in the database and synced automatically was never this easy!` +
`This message might have been sent while we were offline. Who knows!`
});
// To monitor realtime changes to the chat:
chat.onChanged((val, prev, isRemoteChange, context) => {
if (val.title !== prev.title) {
console.log(`Chat title changed to ${val.title} by ${isRemoteChange ? 'us' : 'someone else'}`);
}
});
});
その他の例とドキュメントについては、 npmjs.com のAceBase リアルタイム データベース エンジンを参照してください。