Event Store - Setting up a Cluster using only Database Nodes (OSS)

要啟用 Event Store 的 Cluster 功能,可以開啟 Event Store,設定 IP、Port、與 gossip-seed。 ...

September 18, 2018 · 1 min · 284 words · Larry Nung

Event Store - Subscribing to Receive Stream Updates with .NET API

要使用 Event Store .NET API 訂閱並監聽 Stream 的變化,可以使用 PersistentSubscriptionSettings.Create 設定訂閱,然後調用 Connection.CreatePersistentSubscriptionAsync 方法建立 Persistent Subscriptions。 ...

September 17, 2018 · 1 min · 356 words · Larry Nung

Event Store - Read a Single Event with .NET API

要使用 Event Store .NET API 讀取 Event Store 特定 Stream 內特定的 Event,可以帶入 Stream 的名稱、Event 的編號,調用 Connection.ReadEventAsync 方法。 ...

September 17, 2018 · 1 min · 151 words · Larry Nung

Event Store - Read a Stream of Events with .NET API

要使用 Event Store .NET API 讀取 Event Store 特定 Stream 內的 Event,可以帶入 Stream 的名稱、起始的 Event 編號、以及預計要讀取的 Event 數,去調用 Connetction.ReadStreamEventsForwardAsync 方法。 ...

September 16, 2018 · 1 min · 186 words · Larry Nung

Event Store - Appending to a stream in a single write with .NET API

要使用 Event Store .NET API 發送 Event 給 Event Store,可以先進行 Event Store 的連線。 ...

September 12, 2018 · 1 min · 218 words · Larry Nung

Event Store - Connect with .NET API

要使用 Event Store .NET API 連接 Event Store,先要安裝 EventStore.Client 套件。 ...

September 11, 2018 · 1 min · 347 words · Larry Nung

Event Store - Subscribing to Receive Stream Updates with web interface

要透過 Web interface 去訂閱事件,可切換至 Persistent Subscriptions 頁面,點選 New Subscription 按鈕。 ...

September 6, 2018 · 1 min · 132 words · Larry Nung

Event Store - Streams projection

$streams 是 Event Store 預設提供的 Projection,可以將 Event Link 到一個集中的 Stream。 ...

September 6, 2018 · 1 min · 148 words · Larry Nung

Event Store - By event type projection

$by_event_type 是 Event Store 預設提供的 Projection,可以將 Event 依 Event Type 拆分成到對應的 Stream。 ...

September 4, 2018 · 1 min · 125 words · Larry Nung

Event Store - By category projection

$by_category 是 Event Store 預設提供的 Projection,可以將 Event 依 Stream ID 去拆分成不同 Category 的 Stream。 ...

September 3, 2018 · 1 min · 263 words · Larry Nung