作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个 Go REST API 项目,在该项目中我收到一个具有不同间隔的 POST 请求。这反射(reflect)了一家商店的营业时间,这里是一个例子:
{
...
"intervals": [
{
"day": "1600347600",
"starthours": "800",
"endhours": "1200"
},
{
"day": "1600434000",
"starthours": "1300",
"endhours": "1700"
},
{
"day": "1600520400",
"starthours": "800",
"endhours": "1200"
},
...
]
}
我向 Google 发出请求的代码如下:
// Some code to get the token
//We treat every interval obj sent on the params
if len(sc.Intervals) > 0 {
for _, i := range sc.Intervals {
//This is a necessary step as the format of the dates that the client gives me
//are
dStart, dEnd, err := getDateStartAndEnd(i)
if err != nil {
log.Error(err)
return responseInterval, err
}
//0. build search criteria
var query = events.SearchCriteria{
Email: sc.Owner.Email,
FreeBussyQuery: calendar.FreeBusyRequest{
TimeMin: dStart.Format(time.RFC3339),
TimeMax: dEnd.Format(time.RFC3339),
},
}
isFree, err := calendarService.Freebusy.Query(setCalendarId(query)).Do()
if err != nil {
log.Error(err)
}
//In this function I do two things, get all the "slots" of 15m availables
//in an given interval, then compare them to the bussy answer of Google
//to fill a new slice with free "slots"
freeIntervales := findFreeIntervales(isFree,dStart,dEnd)
responseInterval.Interval = append(responseInterval.Interval,freeIntervales)
}
}
虽然我承认这可能不是最有效的算法,但我的主要问题是,假设有 8 个间隔,我的请求需要 5 秒才能执行。
最佳答案
最后,我意识到为什么我只能打五个电话给 Google?这大大加快了速度。以前需要 5 - 6 秒,现在需要 900 毫秒 - 1400 毫秒。
我只是取了第一个间隔的第一个日期和最后一个间隔的最后一个日期,并要求谷歌给我该范围内的所有忙碌细节。
if len(sc.Intervals) > 0 {
dStartResult, _, err:= getDateStartAndEnd(sc.Intervals[0])
if err != nil {
log.Error(err)
}
_, dEndResultLast, err:= getDateStartAndEnd(sc.Intervals[len(sc.Intervals)-1])
if err != nil {
log.Error(err)
}
//0. build search criteria
var query = events.SearchCriteria{
Email: sc.Owner.Email,
FreeBussyQuery: calendar.FreeBusyRequest{
TimeMin: dStartResult.Format(time.RFC3339),
TimeMax: dEndResultLast.Format(time.RFC3339),
},
}
isFree, err := calendarService.Freebusy.Query(setCalendarId(query)).Do()
if err != nil {
log.Error(err)
}
for _, i := range sc.Intervals {
....
//Do some magic to get the free intervals
关于go - 如何优化多个 google-api-calendars freeBussy 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63935287/
我正在开发一个 Go REST API 项目,在该项目中我收到一个具有不同间隔的 POST 请求。这反射(reflect)了一家商店的营业时间,这里是一个例子: { ... "inte
我是一名优秀的程序员,十分优秀!