[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#879203: RFP: redisearch -- search engine on top of Redis



Package: wnpp
Severity: wishlist

* Package name    : redisearch
  Version         : 0.21.3
  Upstream Author : Redis Labs
* URL             : http://redisearch.io/
* License         : AGPL
  Programming Lang: C
  Description     : search engine on top of Redis

 Unlike other redis search libraries, it does not use internal data
 structures
 like sorted sets.
 .
 Inverted indexes are stored as a special compressed data type that
 allows for
 fast indexing and search speed, and low memory footprint.
 .
 This also enables more advanced features, like exact phrase matching and
 numeric filtering for text queries, that are not possible or efficient
 with
 traditional redis search approaches.


suggested binary package name: redis-redisearch
suggested module location: /usr/lib/redis/redisearch.so

Note that tests require Python's rmtest library which is not yet
packaged in Debian

I'm attaching debian/control and debian/rules file I used to test this
module.
Source: redisearch
Section: database
Priority: optional
Maintainer: Your Name <foo@bar.baz>
Build-Depends: debhelper (>= 10)
Standards-Version: 4.1.0
Homepage: http://redisearch.io/

Package: redis-redisearch
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, redis-server (>= 4:4.0)
Description: search engine on top of Redis
 Unlike other redis search libraries, it does not use internal data structures
 like sorted sets.
 .
 Inverted indexes are stored as a special compressed data type that allows for
 fast indexing and search speed, and low memory footprint.
 .
 This also enables more advanced features, like exact phrase matching and
 numeric filtering for text queries, that are not possible or efficient with
 traditional redis search approaches.
#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_clean:
	dh_auto_clean
	find $(CURDIR) -name '*.pyc' -delete
	find $(CURDIR)/src/tests/ -type f -executable -delete

override_dh_auto_test:
	# disabled due to missing rmtest (and ramp-packer?) Python modules in Debian

override_dh_auto_install:
	dh_install src/redisearch.so /usr/lib/redis/

Reply to: