Skip to content

Instantly share code, notes, and snippets.

@stockwellbm
Last active December 15, 2022 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stockwellbm/2d8e089444e1b7302bba14c60e561d52 to your computer and use it in GitHub Desktop.
Save stockwellbm/2d8e089444e1b7302bba14c60e561d52 to your computer and use it in GitHub Desktop.
jcr-sql2 querying with
{
"jcr:primaryType": "oak:QueryIndexDefinition",
"compatVersion": 2,
"includedPaths": [
"/content/uc/news/articles",
"/content/test-uc/news/articles"
],
"name": "News Search",
"seed": -5349823040609565839,
"type": "lucene",
"async": "async",
"evaluatePathRestrictions": true,
"reindex": false,
"reindexCount": 1,
"indexRules": {
"jcr:primaryType": "nt:unstructured",
"cq:Page": {
"jcr:primaryType": "nt:unstructured",
"includePropertyTypes": "all",
"properties": {
"jcr:primaryType": "nt:unstructured",
"jcrTitle": {
"jcr:primaryType": "nt:unstructured",
"ordered": false,
"propertyIndex": true,
"analyzed": true,
"name": "jcr:content/jcr:title",
"type": "String"
},
"author": {
"jcr:primaryType": "nt:unstructured",
"ordered": true,
"propertyIndex": true,
"name": "jcr:content/author",
"type": "String"
},
"isEmergency": {
"jcr:primaryType": "nt:unstructured",
"nullCheckEnabled": true,
"ordered": false,
"propertyIndex": true,
"name": "jcr:content/isEmergency",
"type": "Boolean"
},
"isEvent": {
"jcr:primaryType": "nt:unstructured",
"nullCheckEnabled": true,
"ordered": false,
"propertyIndex": true,
"name": "jcr:content/isEvent",
"type": "Boolean"
},
"hideInNav": {
"jcr:primaryType": "nt:unstructured",
"nullCheckEnabled": true,
"ordered": false,
"propertyIndex": true,
"name": "jcr:content/hideInNav",
"type": "Boolean"
},
"slingresourceType": {
"jcr:primaryType": "nt:unstructured",
"ordered": false,
"propertyIndex": true,
"name": "jcr:content/sling:resourceType",
"type": "String"
},
"nodeName": {
"jcr:primaryType": "nt:unstructured",
"ordered": true,
"propertyIndex": true,
"analyzed": true,
"name": ":nodeName",
"type": "String"
},
"dispDate": {
"jcr:primaryType": "nt:unstructured",
"ordered": true,
"propertyIndex": true,
"name": "jcr:content/dispDate",
"type": "Date"
},
"cqModified": {
"jcr:primaryType": "nt:unstructured",
"ordered": false,
"propertyIndex": true,
"name": "jcr:content/jcr:lastModified",
"type": "Date"
},
"cqTags": {
"jcr:primaryType": "nt:unstructured",
"nodeScopeIndex": true,
"ordered": false,
"propertyIndex": true,
"analyzed": true,
"name": "jcr:content/cq:tags",
"type": "String"
},
"masterTag": {
"jcr:primaryType": "nt:unstructured",
"nodeScopeIndex": true,
"ordered": false,
"propertyIndex": true,
"analyzed": true,
"name": "jcr:content/masterTag",
"type": "String"
},
"onTime": {
"jcr:primaryType": "nt:unstructured",
"ordered": false,
"propertyIndex": true,
"name": "jcr:content/onTime",
"type": "Date"
},
"offTime": {
"jcr:primaryType": "nt:unstructured",
"ordered": false,
"propertyIndex": true,
"name": "jcr:content/offTime",
"type": "Date"
}
}
}
}
}
Select [oak:scoreExplanation], [story].[jcr:score] AS score, [story].[jcr:content/dispDate] as dispDate FROM [cq:Page] AS [story]
WHERE /* paths */ ISDESCENDANTNODE([story],'/content/test-uc/news/articles')
/* template */ AND ([story].[jcr:content/sling:resourceType] LIKE '%storyTemplates%')
/* hideInNav */ AND (NOT([story].[jcr:content/hideInNav] = true))
/* isEmergency */ AND (NOT([story].[jcr:content/isEmergency] = true))
/* on of time */ AND (NOT([story].[jcr:content/onTime] > 1671112843000)) AND (NOT([story].[jcr:content/offTime] < 1671112843000))
/* manualArticles */ /* term */
/* tags */ AND( CONTAINS([story].[jcr:content/cq:tags],'"blog:college-prep/paying-for-college"^2 OR "blog:college-prep"^4 OR "blog:college-prep/choosing-a-major"^2 OR *^1') OR CONTAINS([story].[jcr:content/masterTag],'"blog:college-prep"^50') )
/* tagsExclude */ /* authors */ /* authorsExclude */ /* contacts */
/* showEvents */ AND NOT([story].[jcr:content/isEvent] LIKE 'true')
/* articlesExclude */ AND NOT( NAME([story]) in ('n20930462' ) )
/* dateRange */ AND ([story].[jcr:content/dispDate] <= 1671115783952)
/* orderby */ ORDER BY score DESC , dispDate desc
1
Featured Image Test
Paying for College
test for alt tag
masterTag: blog:college-prep/paying-for-college
tag: blog:college-prep/paying-for-college
tag: blog:college-prep/choosing-a-major
score: 28.01893424987793
score: 28.018934 = (MATCH) sum of:
28.015965 = (MATCH) sum of:
8.173687 = (MATCH) sum of:
3.014994 = (MATCH) weight(full:jcr:content/cq:tags:"blog college prep paying for college"^2.0 in 694) [DefaultSimilarity], result of:
3.014994 = score(doc=694,freq=1.0 = phraseFreq=1.0
), product of:
0.07726349 = queryWeight, product of:
2.0 = boost
39.022232 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
9.899932E-4 = queryNorm
39.022232 = fieldWeight in 694, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = phraseFreq=1.0
39.022232 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
1.0 = fieldNorm(doc=694)
1.9852664 = (MATCH) weight(full:jcr:content/cq:tags:"blog college prep"^4.0 in 694) [DefaultSimilarity], result of:
1.9852664 = score(doc=694,freq=2.0 = phraseFreq=2.0
), product of:
0.074558645 = queryWeight, product of:
4.0 = boost
18.82807 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
9.899932E-4 = queryNorm
26.626911 = fieldWeight in 694, product of:
1.4142135 = tf(freq=2.0), with freq of:
2.0 = phraseFreq=2.0
18.82807 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
1.0 = fieldNorm(doc=694)
3.1724362 = (MATCH) weight(full:jcr:content/cq:tags:"blog college prep choosing a major"^2.0 in 694) [DefaultSimilarity], result of:
3.1724362 = score(doc=694,freq=1.0 = phraseFreq=1.0
), product of:
0.07925516 = queryWeight, product of:
2.0 = boost
40.028133 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
9.899932E-4 = queryNorm
40.028133 = fieldWeight in 694, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = phraseFreq=1.0
40.028133 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
1.0 = fieldNorm(doc=694)
9.899932E-4 = (MATCH) ConstantScore(full:jcr:content/cq:tags:*), product of:
1.0 = boost
9.899932E-4 = queryNorm
19.842278 = (MATCH) weight(full:jcr:content/masterTag:"blog college prep"^50.0 in 694) [DefaultSimilarity], result of:
19.842278 = score(doc=694,freq=1.0 = phraseFreq=1.0
), product of:
0.991053 = queryWeight, product of:
50.0 = boost
20.02141 = idf(), sum of:
5.888033 = idf(docFreq=12, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
9.899932E-4 = queryNorm
20.02141 = fieldWeight in 694, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = phraseFreq=1.0
20.02141 = idf(), sum of:
5.888033 = idf(docFreq=12, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
1.0 = fieldNorm(doc=694)
9.899932E-4 = (MATCH) weight(:ancestors:/content/test-uc/news/articles in 694) [DefaultSimilarity], result of:
9.899932E-4 = score(doc=694,freq=1.0 = termFreq=1.0
), product of:
9.899932E-4 = queryWeight, product of:
1.0 = idf(docFreq=1724, maxDocs=1725)
9.899932E-4 = queryNorm
1.0 = fieldWeight in 694, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = termFreq=1.0
1.0 = idf(docFreq=1724, maxDocs=1725)
1.0 = fieldNorm(doc=694)
9.899932E-4 = (MATCH) ConstantScore(jcr:content/sling:resourceType:*storyTemplates*), product of:
1.0 = boost
9.899932E-4 = queryNorm
9.899932E-4 = (MATCH) ConstantScore(jcr:content/dispDate:[* TO 1671117675270]), product of:
1.0 = boost
9.899932E-4 = queryNorm
2
Area Man Finds Coin on Street
Paying for College
Area man a few cents richer after finding a coin on the street
masterTag: blog:college-prep/paying-for-college
tag: blog:college-prep/paying-for-college
tag: blog:campus-life/exploring-cincinnati
tag: blog:campus-life
tag: blog:
score: 23.16008186340332
score: 23.160082 = (MATCH) sum of:
23.157112 = (MATCH) sum of:
3.3148346 = (MATCH) product of:
4.4197793 = (MATCH) sum of:
3.014994 = (MATCH) weight(full:jcr:content/cq:tags:"blog college prep paying for college"^2.0 in 691) [DefaultSimilarity], result of:
3.014994 = score(doc=691,freq=1.0 = phraseFreq=1.0
), product of:
0.07726349 = queryWeight, product of:
2.0 = boost
39.022232 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
9.899932E-4 = queryNorm
39.022232 = fieldWeight in 691, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = phraseFreq=1.0
39.022232 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
1.0 = fieldNorm(doc=691)
1.4037954 = (MATCH) weight(full:jcr:content/cq:tags:"blog college prep"^4.0 in 691) [DefaultSimilarity], result of:
1.4037954 = score(doc=691,freq=1.0 = phraseFreq=1.0
), product of:
0.074558645 = queryWeight, product of:
4.0 = boost
18.82807 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
9.899932E-4 = queryNorm
18.82807 = fieldWeight in 691, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = phraseFreq=1.0
18.82807 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
1.0 = fieldNorm(doc=691)
9.899932E-4 = (MATCH) ConstantScore(full:jcr:content/cq:tags:*), product of:
1.0 = boost
9.899932E-4 = queryNorm
0.75 = coord(3/4)
19.842278 = (MATCH) weight(full:jcr:content/masterTag:"blog college prep"^50.0 in 691) [DefaultSimilarity], result of:
19.842278 = score(doc=691,freq=1.0 = phraseFreq=1.0
), product of:
0.991053 = queryWeight, product of:
50.0 = boost
20.02141 = idf(), sum of:
5.888033 = idf(docFreq=12, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
9.899932E-4 = queryNorm
20.02141 = fieldWeight in 691, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = phraseFreq=1.0
20.02141 = idf(), sum of:
5.888033 = idf(docFreq=12, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
1.0 = fieldNorm(doc=691)
9.899932E-4 = (MATCH) weight(:ancestors:/content/test-uc/news/articles in 691) [DefaultSimilarity], result of:
9.899932E-4 = score(doc=691,freq=1.0 = termFreq=1.0
), product of:
9.899932E-4 = queryWeight, product of:
1.0 = idf(docFreq=1724, maxDocs=1725)
9.899932E-4 = queryNorm
1.0 = fieldWeight in 691, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = termFreq=1.0
1.0 = idf(docFreq=1724, maxDocs=1725)
1.0 = fieldNorm(doc=691)
9.899932E-4 = (MATCH) ConstantScore(jcr:content/sling:resourceType:*storyTemplates*), product of:
1.0 = boost
9.899932E-4 = queryNorm
9.899932E-4 = (MATCH) ConstantScore(jcr:content/dispDate:[* TO 1671117675270]), product of:
1.0 = boost
9.899932E-4 = queryNorm
3
Career Paths Story
Career Paths
Career Paths Story
masterTag: blog:education-in-action/career-paths
tag: blog:education-in-action/career-paths
tag: blog:college-prep/choosing-a-major
score: 1.7194280624389648
score: 1.7194282 = (MATCH) sum of:
1.7164581 = (MATCH) product of:
3.4329162 = (MATCH) sum of:
3.4329162 = (MATCH) product of:
4.5772214 = (MATCH) sum of:
1.4037954 = (MATCH) weight(full:jcr:content/cq:tags:"blog college prep"^4.0 in 690) [DefaultSimilarity], result of:
1.4037954 = score(doc=690,freq=1.0 = phraseFreq=1.0
), product of:
0.074558645 = queryWeight, product of:
4.0 = boost
18.82807 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
9.899932E-4 = queryNorm
18.82807 = fieldWeight in 690, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = phraseFreq=1.0
18.82807 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
1.0 = fieldNorm(doc=690)
3.1724362 = (MATCH) weight(full:jcr:content/cq:tags:"blog college prep choosing a major"^2.0 in 690) [DefaultSimilarity], result of:
3.1724362 = score(doc=690,freq=1.0 = phraseFreq=1.0
), product of:
0.07925516 = queryWeight, product of:
2.0 = boost
40.028133 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
9.899932E-4 = queryNorm
40.028133 = fieldWeight in 690, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = phraseFreq=1.0
40.028133 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
7.066688 = idf(docFreq=3, maxDocs=1725)
1.0 = fieldNorm(doc=690)
9.899932E-4 = (MATCH) ConstantScore(full:jcr:content/cq:tags:*), product of:
1.0 = boost
9.899932E-4 = queryNorm
0.75 = coord(3/4)
0.5 = coord(1/2)
9.899932E-4 = (MATCH) weight(:ancestors:/content/test-uc/news/articles in 690) [DefaultSimilarity], result of:
9.899932E-4 = score(doc=690,freq=1.0 = termFreq=1.0
), product of:
9.899932E-4 = queryWeight, product of:
1.0 = idf(docFreq=1724, maxDocs=1725)
9.899932E-4 = queryNorm
1.0 = fieldWeight in 690, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = termFreq=1.0
1.0 = idf(docFreq=1724, maxDocs=1725)
1.0 = fieldNorm(doc=690)
9.899932E-4 = (MATCH) ConstantScore(jcr:content/sling:resourceType:*storyTemplates*), product of:
1.0 = boost
9.899932E-4 = queryNorm
9.899932E-4 = (MATCH) ConstantScore(jcr:content/dispDate:[* TO 1671117675270]), product of:
1.0 = boost
9.899932E-4 = queryNorm
4
Jeremy Is Always Helpful
Resume Tips
This is a story all about how my life got flipped, turned upside down.
masterTag: blog:career-ready/resume-tips
tag: blog:college-prep/paying-for-college
tag: blog:career-ready/resume-tips
score: 1.6603872776031494
score: 1.6603874 = (MATCH) sum of:
1.6574173 = (MATCH) product of:
3.3148346 = (MATCH) sum of:
3.3148346 = (MATCH) product of:
4.4197793 = (MATCH) sum of:
3.014994 = (MATCH) weight(full:jcr:content/cq:tags:"blog college prep paying for college"^2.0 in 686) [DefaultSimilarity], result of:
3.014994 = score(doc=686,freq=1.0 = phraseFreq=1.0
), product of:
0.07726349 = queryWeight, product of:
2.0 = boost
39.022232 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
9.899932E-4 = queryNorm
39.022232 = fieldWeight in 686, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = phraseFreq=1.0
39.022232 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.8435445 = idf(docFreq=4, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
1.0 = fieldNorm(doc=686)
1.4037954 = (MATCH) weight(full:jcr:content/cq:tags:"blog college prep"^4.0 in 686) [DefaultSimilarity], result of:
1.4037954 = score(doc=686,freq=1.0 = phraseFreq=1.0
), product of:
0.074558645 = queryWeight, product of:
4.0 = boost
18.82807 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
9.899932E-4 = queryNorm
18.82807 = fieldWeight in 686, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = phraseFreq=1.0
18.82807 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
1.0 = fieldNorm(doc=686)
9.899932E-4 = (MATCH) ConstantScore(full:jcr:content/cq:tags:*), product of:
1.0 = boost
9.899932E-4 = queryNorm
0.75 = coord(3/4)
0.5 = coord(1/2)
9.899932E-4 = (MATCH) weight(:ancestors:/content/test-uc/news/articles in 686) [DefaultSimilarity], result of:
9.899932E-4 = score(doc=686,freq=1.0 = termFreq=1.0
), product of:
9.899932E-4 = queryWeight, product of:
1.0 = idf(docFreq=1724, maxDocs=1725)
9.899932E-4 = queryNorm
1.0 = fieldWeight in 686, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = termFreq=1.0
1.0 = idf(docFreq=1724, maxDocs=1725)
1.0 = fieldNorm(doc=686)
9.899932E-4 = (MATCH) ConstantScore(jcr:content/sling:resourceType:*storyTemplates*), product of:
1.0 = boost
9.899932E-4 = queryNorm
9.899932E-4 = (MATCH) ConstantScore(jcr:content/dispDate:[* TO 1671117675270]), product of:
1.0 = boost
9.899932E-4 = queryNorm
5
UC cardiologist investigates why the ‘gold standard’ treatment doesn't work well for some
June 3, 2020
Donald Lynch, MD, will conduct an observational study of 150 heart valve replacement patients at UC Medical Center and the University of Kentucky. These patients will undergo TAVR, a procedure in which a catheter-mounted valve is inserted through a small incision in the groin and is minimally invasive compared to open heart surgery. Patients who consent to participate in the study will have blood drawn before the procedure begins, prior to discharge and during clinic follow-ups to determine what biomarkers are predictive of short- and long-term clinical outcomes.
masterTag:
tag: topics:next-lives-here
tag: colleges:medicine/internal-medicine
tag: colleges:medicine/uc-heart-lung-and-vascular-institute
tag: colleges:medicine
tag: blog:college-prep
score: 0.35416632890701294
score: 0.35416636 = (MATCH) sum of:
0.35119635 = (MATCH) product of:
0.7023927 = (MATCH) sum of:
0.7023927 = (MATCH) product of:
1.4047854 = (MATCH) sum of:
1.4037954 = (MATCH) weight(full:jcr:content/cq:tags:"blog college prep"^4.0 in 1017) [DefaultSimilarity], result of:
1.4037954 = score(doc=1017,freq=1.0 = phraseFreq=1.0
), product of:
0.074558645 = queryWeight, product of:
4.0 = boost
18.82807 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
9.899932E-4 = queryNorm
18.82807 = fieldWeight in 1017, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = phraseFreq=1.0
18.82807 = idf(), sum of:
5.813925 = idf(docFreq=13, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
6.507072 = idf(docFreq=6, maxDocs=1725)
1.0 = fieldNorm(doc=1017)
9.899932E-4 = (MATCH) ConstantScore(full:jcr:content/cq:tags:*), product of:
1.0 = boost
9.899932E-4 = queryNorm
0.5 = coord(2/4)
0.5 = coord(1/2)
9.899932E-4 = (MATCH) weight(:ancestors:/content/test-uc/news/articles in 1017) [DefaultSimilarity], result of:
9.899932E-4 = score(doc=1017,freq=1.0 = termFreq=1.0
), product of:
9.899932E-4 = queryWeight, product of:
1.0 = idf(docFreq=1724, maxDocs=1725)
9.899932E-4 = queryNorm
1.0 = fieldWeight in 1017, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = termFreq=1.0
1.0 = idf(docFreq=1724, maxDocs=1725)
1.0 = fieldNorm(doc=1017)
9.899932E-4 = (MATCH) ConstantScore(jcr:content/sling:resourceType:*storyTemplates*), product of:
1.0 = boost
9.899932E-4 = queryNorm
9.899932E-4 = (MATCH) ConstantScore(jcr:content/dispDate:[* TO 1671117675270]), product of:
1.0 = boost
9.899932E-4 = queryNorm
6
Cardiac Surgery Pioneer John Flege Jr., MD, Dies at 88
March 22, 2018
masterTag:
tag: topics:health
tag: colleges:law
tag: colleges:medicine
score: 0.003093729028478265
score: 0.0030937288 = (MATCH) sum of:
1.2374915E-4 = (MATCH) product of:
2.474983E-4 = (MATCH) sum of:
2.474983E-4 = (MATCH) product of:
9.899932E-4 = (MATCH) sum of:
9.899932E-4 = (MATCH) ConstantScore(full:jcr:content/cq:tags:*), product of:
1.0 = boost
9.899932E-4 = queryNorm
0.25 = coord(1/4)
0.5 = coord(1/2)
9.899932E-4 = (MATCH) weight(:ancestors:/content/test-uc/news/articles in 523) [DefaultSimilarity], result of:
9.899932E-4 = score(doc=523,freq=1.0 = termFreq=1.0
), product of:
9.899932E-4 = queryWeight, product of:
1.0 = idf(docFreq=1724, maxDocs=1725)
9.899932E-4 = queryNorm
1.0 = fieldWeight in 523, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = termFreq=1.0
1.0 = idf(docFreq=1724, maxDocs=1725)
1.0 = fieldNorm(doc=523)
9.899932E-4 = (MATCH) ConstantScore(jcr:content/sling:resourceType:*storyTemplates*), product of:
1.0 = boost
9.899932E-4 = queryNorm
9.899932E-4 = (MATCH) ConstantScore(jcr:content/dispDate:[* TO 1671117675270]), product of:
1.0 = boost
9.899932E-4 = queryNorm
7
UC Marks World Kidney Day With Big Ask: Big Give Workshop
March 5, 2018
UC is partnering with the National Kidney Foundation to host a Big Ask: Big Give donor education workshop on Thursday, March 8 at UCMC.
masterTag:
tag: topics:health
tag: colleges:medicine
score: 0.003093729028478265
score: 0.0030937288 = (MATCH) sum of:
1.2374915E-4 = (MATCH) product of:
2.474983E-4 = (MATCH) sum of:
2.474983E-4 = (MATCH) product of:
9.899932E-4 = (MATCH) sum of:
9.899932E-4 = (MATCH) ConstantScore(full:jcr:content/cq:tags:*), product of:
1.0 = boost
9.899932E-4 = queryNorm
0.25 = coord(1/4)
0.5 = coord(1/2)
9.899932E-4 = (MATCH) weight(:ancestors:/content/test-uc/news/articles in 524) [DefaultSimilarity], result of:
9.899932E-4 = score(doc=524,freq=1.0 = termFreq=1.0
), product of:
9.899932E-4 = queryWeight, product of:
1.0 = idf(docFreq=1724, maxDocs=1725)
9.899932E-4 = queryNorm
1.0 = fieldWeight in 524, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = termFreq=1.0
1.0 = idf(docFreq=1724, maxDocs=1725)
1.0 = fieldNorm(doc=524)
9.899932E-4 = (MATCH) ConstantScore(jcr:content/sling:resourceType:*storyTemplates*), product of:
1.0 = boost
9.899932E-4 = queryNorm
9.899932E-4 = (MATCH) ConstantScore(jcr:content/dispDate:[* TO 1671117675270]), product of:
1.0 = boost
9.899932E-4 = queryNorm
8
Therapy After Surgical Removal of Rare Tumors May Not Increase Survival
March 24, 2018
Results of an analysis show that additional therapy delivered after surgical removal of a rare type of gastrointestinal tumor does not increase survival rates for patients.
masterTag:
tag: topics:health
tag: colleges:medicine
score: 0.003093729028478265
score: 0.0030937288 = (MATCH) sum of:
1.2374915E-4 = (MATCH) product of:
2.474983E-4 = (MATCH) sum of:
2.474983E-4 = (MATCH) product of:
9.899932E-4 = (MATCH) sum of:
9.899932E-4 = (MATCH) ConstantScore(full:jcr:content/cq:tags:*), product of:
1.0 = boost
9.899932E-4 = queryNorm
0.25 = coord(1/4)
0.5 = coord(1/2)
9.899932E-4 = (MATCH) weight(:ancestors:/content/test-uc/news/articles in 525) [DefaultSimilarity], result of:
9.899932E-4 = score(doc=525,freq=1.0 = termFreq=1.0
), product of:
9.899932E-4 = queryWeight, product of:
1.0 = idf(docFreq=1724, maxDocs=1725)
9.899932E-4 = queryNorm
1.0 = fieldWeight in 525, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = termFreq=1.0
1.0 = idf(docFreq=1724, maxDocs=1725)
1.0 = fieldNorm(doc=525)
9.899932E-4 = (MATCH) ConstantScore(jcr:content/sling:resourceType:*storyTemplates*), product of:
1.0 = boost
9.899932E-4 = queryNorm
9.899932E-4 = (MATCH) ConstantScore(jcr:content/dispDate:[* TO 1671117675270]), product of:
1.0 = boost
9.899932E-4 = queryNorm
9
UC Hosts 7th Annual Internal Medicine Research Symposium
March 8, 2018
The UC Department of Internal Medicine in the College of Medicine is hosting its seventh annual research symposium Friday, April 13, 2018, in CARE/Crawley Atrium.
masterTag:
tag: topics:health
tag: colleges:medicine
score: 0.003093729028478265
score: 0.0030937288 = (MATCH) sum of:
1.2374915E-4 = (MATCH) product of:
2.474983E-4 = (MATCH) sum of:
2.474983E-4 = (MATCH) product of:
9.899932E-4 = (MATCH) sum of:
9.899932E-4 = (MATCH) ConstantScore(full:jcr:content/cq:tags:*), product of:
1.0 = boost
9.899932E-4 = queryNorm
0.25 = coord(1/4)
0.5 = coord(1/2)
9.899932E-4 = (MATCH) weight(:ancestors:/content/test-uc/news/articles in 526) [DefaultSimilarity], result of:
9.899932E-4 = score(doc=526,freq=1.0 = termFreq=1.0
), product of:
9.899932E-4 = queryWeight, product of:
1.0 = idf(docFreq=1724, maxDocs=1725)
9.899932E-4 = queryNorm
1.0 = fieldWeight in 526, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = termFreq=1.0
1.0 = idf(docFreq=1724, maxDocs=1725)
1.0 = fieldNorm(doc=526)
9.899932E-4 = (MATCH) ConstantScore(jcr:content/sling:resourceType:*storyTemplates*), product of:
1.0 = boost
9.899932E-4 = queryNorm
9.899932E-4 = (MATCH) ConstantScore(jcr:content/dispDate:[* TO 1671117675270]), product of:
1.0 = boost
9.899932E-4 = queryNorm
10
Shining a Light on Women s Health on World Kidney Day
March 6, 2018
This year, World Kidney Day and International Women's Day are being observed on Thursday, March 8. The 2018 WKD theme is "Kidneys and Women's Health: Include, Value, Empower.
masterTag:
tag: topics:health
tag: colleges:medicine
score: 0.003093729028478265
score: 0.0030937288 = (MATCH) sum of:
1.2374915E-4 = (MATCH) product of:
2.474983E-4 = (MATCH) sum of:
2.474983E-4 = (MATCH) product of:
9.899932E-4 = (MATCH) sum of:
9.899932E-4 = (MATCH) ConstantScore(full:jcr:content/cq:tags:*), product of:
1.0 = boost
9.899932E-4 = queryNorm
0.25 = coord(1/4)
0.5 = coord(1/2)
9.899932E-4 = (MATCH) weight(:ancestors:/content/test-uc/news/articles in 527) [DefaultSimilarity], result of:
9.899932E-4 = score(doc=527,freq=1.0 = termFreq=1.0
), product of:
9.899932E-4 = queryWeight, product of:
1.0 = idf(docFreq=1724, maxDocs=1725)
9.899932E-4 = queryNorm
1.0 = fieldWeight in 527, product of:
1.0 = tf(freq=1.0), with freq of:
1.0 = termFreq=1.0
1.0 = idf(docFreq=1724, maxDocs=1725)
1.0 = fieldNorm(doc=527)
9.899932E-4 = (MATCH) ConstantScore(jcr:content/sling:resourceType:*storyTemplates*), product of:
1.0 = boost
9.899932E-4 = queryNorm
9.899932E-4 = (MATCH) ConstantScore(jcr:content/dispDate:[* TO 1671117675270]), product of:
1.0 = boost
9.899932E-4 = queryNorm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment