蛋蛋星球-客户端
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

es.go 382 B

1ヶ月前
2週間前
1ヶ月前
1234567891011121314151617181920212223242526
  1. package md
  2. const EggUserShortLink = "egg_user_short_link"
  3. const EggUserShortLinkMap = `
  4. {
  5. "settings" : {
  6. "number_of_shards" : 2,
  7. "number_of_replicas" : 1
  8. },
  9. "mappings":{
  10. "properties":{
  11. "uid":{
  12. "type": "integer"
  13. },
  14. "date":{
  15. "type": "integer"
  16. },
  17. "link":{
  18. "type": "keyword"
  19. },
  20. "short_link":{
  21. "type": "keyword"
  22. }
  23. }
  24. }
  25. }`