如何将Drupal 7与Hypertable连接?
According to http://drupal.org/node/443540:
Field storage modules could be written
to store field data in a variety of
ways including HyperTable, Amazon S3
or CouchDB
but I have no idea how to do
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尽管有文档,您还是可以查看 MongoDB 模块
http://drupal.org/project/mongodb
Despite the documentations, you could have a look on MongoDB module
http://drupal.org/project/mongodb
您查看过 Field Storage API 文档页面吗? http://api.drupal .org/api/drupal/modules--field--field.attach.inc/group/field_storage/7
它列出了声明新存储后端所需实现的挂钩(hook_field_storage_info()) 并插入一个字段存储后端(hook_field_storage_OP())。
Did you take a look at the Field Storage API documentation page? http://api.drupal.org/api/drupal/modules--field--field.attach.inc/group/field_storage/7
It's listing the hooks you need to implements to declare a new storage backend (hook_field_storage_info()) and to plug a field on a storage backend (hook_field_storage_OP()).