Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
}
]

```