Development

#2731 (sfLuceneActionIndexer(Handler) should allow multiple request parameters and index every combination)

You must first sign up to be able to contribute.

Ticket #2731 (closed enhancement: fixed)

Opened 7 months ago

Last modified 2 months ago

sfLuceneActionIndexer(Handler) should allow multiple request parameters and index every combination

Reported by: Carl.Vondrick Assigned to: Carl.Vondrick
Priority: minor Milestone:
Component: sfLucenePlugin Version:
Keywords: Cc:
Qualification: Unreviewed

Description

In a typical symfony application, it is possible for multiple static content to live under the same action. The current indexing system allows only one variation of that content to be indexed. The indexer should be changed to instead of indexing by action to index by URL.

The indexer can then be told to index: foo/bar?id=[1,5] which would index module foo, action bar, 5 times running request parameter ID along interval [1,5] each time. Combinations of parameters should also be possible: foo/bar?id=[1,5]&baz=[1,100] , which would index every single possible combination.

Change History

05/31/08 09:21:10 changed by Carl.Vondrick

  • status changed from new to closed.
  • resolution set to fixed.

In r9385.

Shortcut generation will not be supported because if there is a systematic routeto your pages through request parameters, they likely can be indexed through more efficient means (Propel model?).