Skip to content

inetstudio/tags

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Elasticsearch

PUT app_index
PUT app_index/_mapping/tags
{
  "properties": {
    "id": {
      "type": "integer"
  	},
    "name": {
  	  "type": "string"
    },
    "title": {
  	  "type": "string"
    },    
	  "content": {
  	  "type": "text"
  	}
  }
}