http://www.perlmonks.org?node_id=898457


in reply to Re^2: Design Question - I've gone object mad!
in thread Design Question - I've gone object mad!

I'm not aware of DBIx::Class being able to send queries to Solr, for example

It looks like it does to me:

DBIx::Class::Indexer::WebService::Solr

Even if it dosen't do exactly what you want, personally I'd rather take that and modify it to get it to do what I want instead of start from scratch.

As I've said, the model I'm working on is above any db layer.

Its your project so you know and I don't, but since you're here asking for advice I'll give it: DBIx::Class works above the db layer. From here it looks like you are reinventing wheels instead of figuring out how to add in hooks to existing frameworks.

  • Comment on Re^3: Design Question - I've gone object mad!

Replies are listed 'Best First'.
Re^4: Design Question - I've gone object mad!
by Cagao (Monk) on Apr 11, 2011 at 17:45 UTC

    Cheers for that, I'll certainly be taking a look to see if it'll work for what we need.

    Time to learn DBIx::Class fully now :)