Leave a Reply

2 comments

  1. I would suggest inserting your tours as posts (or custom posts) and using a custom reference table with the id matching the post id of the Tour post.

    You could use WordPress’s built in meta box functions to be able to edit each Tour in the edit posts page.

    You could update your reference table by hooking into the ‘save_post’ action.

    There will be a considerable look-up speed improvement if you choose to create this reference table as MYISAM and use fixed column widths along with indexing searchable columns.

    With that much data, you could use this option to not only tap in to much of the great WordPress built-in functionality, but ensure speedy look-ups on the extra data.