CRUD模式的缺点
有人使用过 CRUD 模式吗?
由于写入的通用格式,增删改查模式的实现是否正确会消耗更多内存来存储任何类型的数据?
谢谢大家..
does anyone ever use the CRUD pattern?
whether the correct that implementation of crud pattern consume more memory because of generalised format they are written, to store any kind of data?
Thank's for all..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CRUD 不是任何类型的模式。它仅代表创建、读取、更新、删除,指的是人们可能想要对任何数据执行的 4 个特定操作。
关于 CRUD 的维基百科
设计模式维基百科
CRUD is not a pattern of any sort. It simply stands for Create, Read, Update, Delete in reference to those 4 particular actions one might want to perform on any data.
Wikipedia on CRUD
Wikipedia on Design Patterns