English 中文(简体)
开放源码搜索用户界面项目,可耗用 REST 服务
原标题:Open Source Search UI projects that can be consume REST services

我试图找到解决我当前问题的办法。让我解释一下:我需要找到一个可以消耗我选择的RET服务的搜索UI, 并且高度可配置。 我搜索了网络,并为Solr找到了黑光搜索UI(在Ruby中写下 ) 。 我还查看了Haystack (为django), 这似乎更像是一笔期票, 因为某处医生发现你可以将Haystack与您的定制搜索引擎连接起来。 从盒子里出来, Haystack 支持Solr, Xapian 和其他两个我现在记不清的人。

我试图找到的是一个用爪哇、PHP(最后手段)或Python(最后手段)写成的UI, 它将允许我指定我的API的终点, 并用几种配置(我并不期望它从框中流出), 它应该能够查询API并返回结果 。

如果这不可能的话,那么有人可以建议我一些接近我所描述的东西,并允许我写自己的后端代码,该代码将链接到APIs?一个Haystack的例子也会做...

谢谢 谢谢

问题回答

我也对这个话题感兴趣。我知道SESAT 框架支持FAST、Solr、Yahoo!、通用XML等等,但是它老了,没有很好的维护,而且试图做更多的工作,不仅仅是一个简单的前端。

您还有< a href=> http://evolvingweb.github.com/ajax-sorr/" rel="nofollow" > AJAX-Solr , 显然它只支持Solr。

我已在Twitter上转达你的问题,





相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签