-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from newapplesho/feature/AddDisMaxQuery
Added DisMaxQuery
- Loading branch information
Showing
23 changed files
with
82 additions
and
7 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...urationOfElasticsearch.package/ConfigurationOfElasticsearch.class/instance/version113..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
as yet unclassified | ||
versions | ||
version113: spec | ||
<version: '1.1.3' imports: #('1.1-baseline')> | ||
spec | ||
|
2 changes: 1 addition & 1 deletion
2
...urationOfElasticsearch.package/ConfigurationOfElasticsearch.class/instance/version114..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
as yet unclassified | ||
versions | ||
version114: spec | ||
<version: '1.1.4' imports: #('1.1-baseline')> | ||
spec | ||
|
2 changes: 1 addition & 1 deletion
2
...urationOfElasticsearch.package/ConfigurationOfElasticsearch.class/instance/version116..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
as yet unclassified | ||
versions | ||
version116: spec | ||
<version: '1.1.6' imports: #('1.1-baseline')> | ||
spec | ||
|
14 changes: 14 additions & 0 deletions
14
...urationOfElasticsearch.package/ConfigurationOfElasticsearch.class/instance/version117..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
versions | ||
version117: spec | ||
<version: '1.1.7' imports: #('1.1-baseline')> | ||
spec | ||
for: #common | ||
do: [ | ||
spec blessing: #stable. | ||
spec author: 'ShoYoshida'. | ||
spec | ||
project: 'ZincHTTPComponents' with: #stable; | ||
project: 'JSON' with: #stable. | ||
spec | ||
baseline: 'Elasticsearch' with: [ spec repository:'github://newapplesho/elasticsearch-smalltalk:v1.1.7/pharo-repository' ]; | ||
import: 'Elasticsearch'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pharo-repository/ConfigurationOfElasticsearch.package/monticello.meta/version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
3 changes: 3 additions & 0 deletions
3
pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/class/queries..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
instance creation | ||
queries: aCollection | ||
^self new queries: aCollection; yourself |
4 changes: 4 additions & 0 deletions
4
...itory/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/jsonWriteContentBeginOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
printing | ||
jsonWriteContentBeginOn: aStream | ||
|
||
aStream nextPutAll: '{ "dis_max": ' |
4 changes: 4 additions & 0 deletions
4
...ository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/jsonWriteContentEndOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
printing | ||
jsonWriteContentEndOn: aStream | ||
|
||
aStream nextPutAll: '}' |
4 changes: 4 additions & 0 deletions
4
...itory/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/jsonWriteContentValueOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
printing | ||
jsonWriteContentValueOn: aStream | ||
self modifiers jsonWriteOn: aStream. | ||
|
3 changes: 3 additions & 0 deletions
3
pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/queries..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
queries: aCollection | ||
self modifiers at:'queries' put: aCollection |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/queries.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
queries | ||
^self modifiers at:'queries' ifAbsentPut: [ #() ] |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/tieBreaker..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
tieBreaker: aNumber | ||
^ self modifiers at: 'tie_breaker' put: aNumber |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/tieBreaker.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
tieBreaker | ||
^ self modifiers at: 'tie_breaker' ifAbsentPut: [ 0 ] |
11 changes: 11 additions & 0 deletions
11
pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"class" : { | ||
"queries:" : "MasashiUmezawa 10/26/2016 11:19" }, | ||
"instance" : { | ||
"jsonWriteContentBeginOn:" : "MasashiUmezawa 10/26/2016 11:38", | ||
"jsonWriteContentEndOn:" : "MasashiUmezawa 10/26/2016 11:38", | ||
"jsonWriteContentValueOn:" : "MasashiUmezawa 10/26/2016 11:27", | ||
"queries" : "MasashiUmezawa 10/26/2016 11:15", | ||
"queries:" : "MasashiUmezawa 10/26/2016 11:14", | ||
"tieBreaker" : "MasashiUmezawa 10/26/2016 11:17", | ||
"tieBreaker:" : "MasashiUmezawa 10/26/2016 11:16" } } |
14 changes: 14 additions & 0 deletions
14
pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "Elasticsearch-Core-QueryDSL", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "ESDisMaxQuery", | ||
"pools" : [ | ||
], | ||
"super" : "ESQuery", | ||
"type" : "normal" } |
3 changes: 3 additions & 0 deletions
3
pharo-repository/Elasticsearch-Core.package/ESMultiMatchQuery.class/instance/type..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
acccessing | ||
type: aString | ||
^ self modifiers at: 'type' put: aString |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/boost.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
accessing | ||
boost | ||
^self modifiers at: 'boost' ifAbsentPut: [] |
2 changes: 1 addition & 1 deletion
2
pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/jsonStringContents.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
printing | ||
jsonStringContents | ||
self subclassResponsibility | ||
^ String streamContents: [:str | self jsonWriteOn: str] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pharo-repository/Elasticsearch-Core.package/monticello.meta/version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
(name 'Elasticsearch-Core-ShoYoshida.19' message 'empty log message' id '9e569114-81c0-4e0d-9ac0-20a6e342a283' date '20 June 2016' time '3:40:24.177299 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.18' message 'empty log message' id '00eac1ba-c6b0-4b65-810c-8e6e2a852dc7' date '20 June 2016' time '3:28:16.388827 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.17' message 'Contribution by Kazuki Minaminani' id 'ec7fbcec-9857-4f65-971f-4deb711616e3' date '16 June 2016' time '8:21:36.867741 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.16' message 'empty log message' id '160d8a21-3e7d-4e11-a4a7-f3f8af59daa6' date '16 June 2016' time '1:48:45.873925 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.15' message 'Added ESPrefixQuery. Fixed ESSearch.' id '529244c7-e77e-4aff-9bdd-4cf06047f8aa' date '30 January 2016' time '2:48:56.685885 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-MasashiUmezawa.14' message 'empty log message' id 'c25cd701-b7e2-40f7-af4f-a16955704999' date '19 January 2016' time '3:55:59.787789 pm' author 'MasashiUmezawa' ancestors ((name 'Elasticsearch-Core-MasashiUmezawa.13' message 'empty log message' id 'acccc9dc-dc83-40fc-aa8f-1e50fb6b46dc' date '19 January 2016' time '3:55:16.75174 pm' author 'MasashiUmezawa' ancestors ((name 'Elasticsearch-Core-MasashiUmezawa.12' message 'Avoid using Count API which will be obsolete soon' id '9b47c425-8f93-4162-9975-ef307e3d21f5' date '19 January 2016' time '3:53:02.984237 pm' author 'MasashiUmezawa' ancestors ((name 'Elasticsearch-Core-ShoYoshida.11' message 'empty log message' id '84a2d67c-c84d-4ad0-b47d-f57af74954b6' date '14 January 2016' time '1:03:22.22627 am' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.10' message 'empty log message' id 'ab5c5a45-0f25-40b9-b6dc-2bd2f976a83b' date '12 January 2016' time '9:42:01.837099 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.9' message 'empty log message' id 'fa43f947-7e37-4a07-83a5-7b3dce262aed' date '11 January 2016' time '8:53:11.821772 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.8' message 'Fixed ESRangeFilterTest' id '93016c20-c5bc-4325-916f-afb7b99f9421' date '11 January 2016' time '7:43:09.200377 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.7' message 'empty log message' id '243ad2ef-82e2-4599-8678-13844b1d95af' date '11 January 2016' time '7:18:54.830299 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.6' message 'empty log message' id '3c9047e3-91df-4f8d-9edf-ec9ad8ab47a6' date '11 January 2016' time '6:54:05.933854 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.5' message 'empty log message' id 'a1a92b62-ad03-4cf0-aa44-5bb97b80b630' date '11 January 2016' time '3:27:00.569096 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.4' message 'empty log message' id 'dea2e654-e1f9-4a4e-831a-45a95118c474' date '11 January 2016' time '11:36:33.955283 am' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.3' message 'fixed ESMultiMatchQuery ' id '27783b19-1502-4a88-8b75-b57b614ff672' date '7 January 2016' time '10:47:23.134807 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.2' message 'empty log message' id 'bf97c308-89a0-4167-a60e-8a000d3d0ecb' date '7 January 2016' time '5:53:54.374513 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.1' message 'empty log message' id 'cd1c144e-ddd9-4e2f-b5e5-a99b63d3b11c' date '7 January 2016' time '2:46:30.059234 pm' author 'ShoYoshida' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) | ||
(name 'Elasticsearch-Core-MasashiUmezawa.21' message 'empty log message' id 'fba04475-a8f0-4f44-95e9-c484fc7f04ad' date '26 October 2016' time '11:52:04.428055 am' author 'MasashiUmezawa' ancestors ((name 'Elasticsearch-Core-MasashiUmezawa.20' message 'Added DisMaxQuery' id 'd4bb0337-bd17-4ff9-9d54-53458bcd3792' date '26 October 2016' time '11:46:44.734177 am' author 'MasashiUmezawa' ancestors ((name 'Elasticsearch-Core-ShoYoshida.19' message 'empty log message' id '9e569114-81c0-4e0d-9ac0-20a6e342a283' date '20 June 2016' time '3:40:24.177299 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.18' message 'empty log message' id '00eac1ba-c6b0-4b65-810c-8e6e2a852dc7' date '20 June 2016' time '3:28:16.388827 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.17' message 'Contribution by Kazuki Minaminani' id 'ec7fbcec-9857-4f65-971f-4deb711616e3' date '16 June 2016' time '8:21:36.867741 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.16' message 'empty log message' id '160d8a21-3e7d-4e11-a4a7-f3f8af59daa6' date '16 June 2016' time '1:48:45.873925 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.15' message 'Added ESPrefixQuery. Fixed ESSearch.' id '529244c7-e77e-4aff-9bdd-4cf06047f8aa' date '30 January 2016' time '2:48:56.685885 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-MasashiUmezawa.14' message 'empty log message' id 'c25cd701-b7e2-40f7-af4f-a16955704999' date '19 January 2016' time '3:55:59.787789 pm' author 'MasashiUmezawa' ancestors ((name 'Elasticsearch-Core-MasashiUmezawa.13' message 'empty log message' id 'acccc9dc-dc83-40fc-aa8f-1e50fb6b46dc' date '19 January 2016' time '3:55:16.75174 pm' author 'MasashiUmezawa' ancestors ((name 'Elasticsearch-Core-MasashiUmezawa.12' message 'Avoid using Count API which will be obsolete soon' id '9b47c425-8f93-4162-9975-ef307e3d21f5' date '19 January 2016' time '3:53:02.984237 pm' author 'MasashiUmezawa' ancestors ((name 'Elasticsearch-Core-ShoYoshida.11' message 'empty log message' id '84a2d67c-c84d-4ad0-b47d-f57af74954b6' date '14 January 2016' time '1:03:22.22627 am' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.10' message 'empty log message' id 'ab5c5a45-0f25-40b9-b6dc-2bd2f976a83b' date '12 January 2016' time '9:42:01.837099 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.9' message 'empty log message' id 'fa43f947-7e37-4a07-83a5-7b3dce262aed' date '11 January 2016' time '8:53:11.821772 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.8' message 'Fixed ESRangeFilterTest' id '93016c20-c5bc-4325-916f-afb7b99f9421' date '11 January 2016' time '7:43:09.200377 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.7' message 'empty log message' id '243ad2ef-82e2-4599-8678-13844b1d95af' date '11 January 2016' time '7:18:54.830299 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.6' message 'empty log message' id '3c9047e3-91df-4f8d-9edf-ec9ad8ab47a6' date '11 January 2016' time '6:54:05.933854 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.5' message 'empty log message' id 'a1a92b62-ad03-4cf0-aa44-5bb97b80b630' date '11 January 2016' time '3:27:00.569096 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.4' message 'empty log message' id 'dea2e654-e1f9-4a4e-831a-45a95118c474' date '11 January 2016' time '11:36:33.955283 am' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.3' message 'fixed ESMultiMatchQuery ' id '27783b19-1502-4a88-8b75-b57b614ff672' date '7 January 2016' time '10:47:23.134807 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.2' message 'empty log message' id 'bf97c308-89a0-4167-a60e-8a000d3d0ecb' date '7 January 2016' time '5:53:54.374513 pm' author 'ShoYoshida' ancestors ((name 'Elasticsearch-Core-ShoYoshida.1' message 'empty log message' id 'cd1c144e-ddd9-4e2f-b5e5-a99b63d3b11c' date '7 January 2016' time '2:46:30.059234 pm' author 'ShoYoshida' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) |