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.
我有一个启用了可搜索行为的 Doctrine 表。
每当创建记录时,都会在另一个表中创建索引。我有一个名为的模型Entry,行为自动创建了表entry_index。
Entry
entry_index
我现在的问题是:我如何 - 不使用search(...)我的模型的方法来使用该表中的数据?
search(...)
我想创建一个最常用词的标签云,而索引表中的数据正是我所需要的。
Doctrine 生成的表EntryIndex应该可以从Doctrine::getTable('EntryIndex').
EntryIndex
Doctrine::getTable('EntryIndex')
另外Entry还有EntryIndex引用索引表和EntryIndex有关系的Entry关系。Entry该关系是和之间的标准一对多 (1-n) 关系EntryIndex。