Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Raven Listener 之类的东西来检测索引何时发生变化。将文档插入数据库时,我希望能够等到索引刷新后再触发触发器。有没有人有任何想法?
我看到了 Ayende 关于使用 subscribe 方法的帖子:
store.Changes() .DocumentSubscription("orders/1293") .Subscribe(Reload);
但找不到更多细节。提前致谢。
弗朗西斯,你可以这样做:
store.Changes().ForIndex("YourIndex").Subscribe(DoSomething);