Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

numeric value and multivalue fields support #22

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c88daec
supports numeric fields (insert and query), multi-valued fields.
yxzhang Sep 2, 2013
456f6db
change version to 0.5
yxzhang Sep 2, 2013
3961356
add numeric value support in delete function
yxzhang Sep 2, 2013
5113dc1
add tests and about numeric values.
yxzhang Sep 2, 2013
42370c7
add notes about multivalued field
yxzhang Sep 2, 2013
e98d69e
add eclipse project settings for eclipse user importing easilly
yxzhang Sep 2, 2013
2db8080
add multivalued filed search examples in README
yxzhang Sep 2, 2013
e902c90
add schema-hints for numberic types and field index type
yxzhang Sep 8, 2013
7defb66
version to 0.6.0
yxzhang Sep 8, 2013
66cc5d6
supports sort
yxzhang Sep 8, 2013
3148f0a
add clojure syntax highlighting in readme
yxzhang Sep 8, 2013
c5f8e21
correct wiki syntax
yxzhang Sep 8, 2013
7275b04
update readme
yxzhang Sep 8, 2013
c8ca096
fix bug about lost namespace of "*schema-hints*" in readme
yxzhang Sep 9, 2013
fbe0353
parallel indexing large number of data and schema as index's metadata
yxzhang Sep 10, 2013
e349d90
format readme to avoid too long rows
yxzhang Sep 10, 2013
fe08e55
when parallel indexing report the increased swap value instead of deref
yxzhang Sep 10, 2013
b0f260e
in readme: fix error about parallel indexing
yxzhang Sep 10, 2013
4901919
negitave number search support
yxzhang Sep 11, 2013
3d318ba
simplify schema definition in readme
yxzhang Sep 11, 2013
fd6c766
support untokenized field's query just like {:title "A.B"}
yxzhang Sep 11, 2013
9bf827e
fix bug for float range query
yxzhang Sep 11, 2013
596fb65
ver to 0.8.6
yxzhang Sep 11, 2013
bc5201c
Supports to upsert and only load certain stored fields and fast collect
yxzhang Sep 13, 2013
d6a7d53
fix version in readme
yxzhang Sep 13, 2013
9b29eeb
fix NPE on jdk6
yxzhang Sep 13, 2013
5d867e6
fix bug about numeric value stored but not indexed
yxzhang Sep 13, 2013
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add eclipse project settings for eclipse user importing easilly
  • Loading branch information
yxzhang committed Sep 2, 2013
commit e98d69e0ad2660c7da195e9a4a587080c21ae326
36 changes: 36 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="test">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="dev-resources">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="resources">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="target/classes">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry exported="true" kind="con" path="ccw.LEININGEN_CONTAINER">
<attributes>
<attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="clucy/target/native/linux/x86_64"/>
</attributes>
</classpathentry>
<classpathentry exported="true" kind="lib" path="classes">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="bin"/>
</classpath>
35 changes: 35 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>clucy</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>ccw.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>ccw.leiningen.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>ccw.leiningen.nature</nature>
<nature>ccw.nature</nature>
</natures>
</projectDescription>
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ language: clojure
lein: lein2

jdk:
- oraclejdk6
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk7