On May 12, 8:16 pm, James Earl <[email protected]> wrote: > Is it theoretically possible to create a SphinxQL adapter for Sequel? > Would it be a good fit? I've only just started reading about > SphinxQL, so I admittedly don't know much about it.
Yes. It's not only theoretically possible to have non-SQL backends, it's actually been done: http://github.com/jeremyevans/sequel-mongo/blob/master/lib/sequel/adapters/mongo.rb The closer SphinxQL is to SQL (not syntax, but behavior), the more it would make sense. For example, while the Mongo adapter works for a lot of things, it's not really a good fit, as you can do a lot of things in SQL that Mongo can't do, and Mongo has features that standard SQL doesn't handle. Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en.
