summaryrefslogtreecommitdiffstats
path: root/documentgen-test/etc/complex/common.sd
diff options
context:
space:
mode:
Diffstat (limited to 'documentgen-test/etc/complex/common.sd')
-rw-r--r--documentgen-test/etc/complex/common.sd69
1 files changed, 69 insertions, 0 deletions
diff --git a/documentgen-test/etc/complex/common.sd b/documentgen-test/etc/complex/common.sd
new file mode 100644
index 00000000000..db4d920ea1c
--- /dev/null
+++ b/documentgen-test/etc/complex/common.sd
@@ -0,0 +1,69 @@
+# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+search common {
+ document common {
+ field uri type string {
+ indexing: summary
+ }
+ field title type string {
+ bolding: on
+ # index-to: default, title
+ indexing: index|summary
+ summary-to: smallsum
+ body
+ }
+ field mid type int {
+ indexing: attribute|index|summary
+ }
+ field scorekey type string {
+ indexing: summary
+ }
+ field weight_src type float {
+
+ }
+ field w1_src type float {
+
+ }
+ field w2_src type float {
+
+ }
+ field did type string {
+ indexing: attribute|index|summary
+ }
+ field ew type string {
+ indexing: index|summary
+ }
+ field content type raw {
+ body
+ }
+ annotation date {
+ field exacttime type long { }
+ }
+ annotation emptyannotation { }
+ annotation NodeImpl { }
+ annotation DocumentImpl { }
+ annotation NodeImplSub inherits NodeImpl {
+ field refToPovided type annotationreference<DocumentImpl> { }
+ }
+ annotation DocumentImplSub inherits DocumentImpl { }
+ }
+ field weight type float {
+ }
+ field w1 type float {
+ }
+ field w2 type float {
+ }
+ rank-profile default {
+ first-phase {
+ expression: nativeRank
+ }
+ }
+ field weight type float {
+ indexing: input weight_src * 10 | attribute | summary
+ }
+ field w1 type float {
+ indexing: input weight_src * 6 + input w1_src | summary
+ }
+ field w2 type float {
+ indexing: input w2_src + input weight_src | summary
+ }
+}