in reply to Advice - storing data - which structure do you recommend? (details inside)

Would you use SQLite? It or other modules in the thread can put your data into a (RAM|FILE|DB|whatever) SQL queryable object.

my @list_of_ids = XX_query('SELECT id from my_data ORDER BY title');

SQL will let you do about anything.

For the more purely perl check out A Fresh Look at Efficient Perl Sorting .

  • Comment on Re: Advice - storing data - which structure do you recommend? (details inside)
  • Download Code