Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tusharmakkar08/query-optimizer
Code for optimizing queries, Ranking of Conferences and Subscription Handling
https://github.com/tusharmakkar08/query-optimizer
Last synced: 25 days ago
JSON representation
Code for optimizing queries, Ranking of Conferences and Subscription Handling
- Host: GitHub
- URL: https://github.com/tusharmakkar08/query-optimizer
- Owner: tusharmakkar08
- License: mit
- Created: 2015-02-08T09:45:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-10T09:31:55.000Z (over 9 years ago)
- Last Synced: 2024-04-20T00:19:40.212Z (7 months ago)
- Language: Python
- Homepage:
- Size: 261 KB
- Stars: 0
- Watchers: 8
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Query-Optimizer
Query format will be as follows :
```
{
userId:
queryId:
beginDate:
endDate:
cfpDate:
// Last date of paper submission
// Date format would be same as `date +"%d-%m-%Y"`
location:[{
country:
, state:
, city:
},{}]
interest:[{
broadDomain:
,specificDomain:
},{}]
publisher:[]
lowestRank:
highestRank:
}
```
For all those places where nothing is there just add `null` or `None` (in python) to it.###Sample Query :
```
[
{
'publisher': None,
'endDate': '13-12-2024',
'interest':
[{'specificDomain': 'Temperature', 'broadDomain': 'Meta'},
{'specificDomain': 'Soil', 'broadDomain': 'Meta'}],
'lowestRank': 1.3407697776717198,
'beginDate': '11-9-2017',
'userId': 5765005,
'queryId': 3015209,
'location': None,
'cfpDate': '11-9-2017',
'highestRank': 6
}
]```