在 C# 中实现标记系统的最佳方法是什么(无数据库;无 asp.net)?
我找到了几个关于使用数据库后端实现标记系统的示例,但没有找到任何仅使用列表和字典来实现它的示例。谁能给我指导如何实现这一点或向我指出一些在线文章?
I found a couple of examples on implementing tagging systems with a database backend but not any on implementing it using just list and dictionaries. Can anyone give me a guide on how to implement this or point me to some online articles?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你要么需要一个数据库后端,要么你必须想出一种自己存储它的方法。
它所标记的东西,它们是如何存储的?
I think you either need a database backend or you'll have to come up with a way to store it yourself.
The things that it's tagging, how are they stored?
如果我没记错的话,列表和字典都在内存对象中,您需要将标签存储在非易失性存储中。以便您可以重复使用它们。 (它可以是文件、数据库,甚至你可以使用 xml )。
if i am not wrong, List and Dictionary are in memory objects, you need to store tags in in non-volatile storage. so that you can reuse them. (either it may be File, Database, or even u can use xml ) .