AppFabric回调
我在 ASP.Net 4.0 C# 应用程序中使用 Windows AppFabric 缓存服务。我需要将其用于我的购物车。由于库存商品数量有限,所以我希望用户必须在 10 分钟内完成交易,以便其他用户实时获取数量更新。我的问题是,如果用户没有在规定的时间内完成交易,我不确定如何更新我的缓存。是否有任何称为回调通知的东西,以便我可以知道缓存已超时,并且我可以更新其他缓存上的值。
请帮忙。
谢谢 维韦克
I am using Windows AppFabric Caching service in my ASP.Net 4.0 C# application. I need to use this for my shopping cart. As inventory items are limited in stock so I want that a user must complete the transaction with in 10 minutes so that other users get the quantity updates in real time. My problem is I am not sure how to update my cache if user doesn't complete the transaction with in stipulated time. Is there any thing called CallBack notification so that I could get to know that cache has timed out and I can update values on other cache.
Please help.
Thanks
Vivek
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以在这里做很多事情。
a) 将缓存值设置为 10 分钟后超时。
b) 通过通知增强 tiemout 设置。
如果您使用 RESTful Web 服务公开库存统计信息,则可以将大量此类逻辑放入服务层,并使您的 Web 应用程序(可能还有移动应用程序)更加简单。
you can do many things here.
a) Set the cache values to time out after 10 minuttes.
b) Enhance the tiemout setup with notifications.
If you expose your inventory stats with a RESTful web service, you can put a lot of this logic in the service layer, and keep your web app (and possibly mobile apps) more simple.