You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							417 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							22 lines
						
					
					
						
							417 B
						
					
					
				| /* | |
|  | |
| Here is the CQL to create the table.CassandraStore | |
|  | |
| Optionally you can adjust the keyspace name and replication settings. | |
|  | |
| For production server, very likely you want to set replication_factor to 3 | |
|  | |
| */ | |
| 
 | |
| create keyspace seaweed WITH replication = { | |
|   'class':'SimpleStrategy', | |
|   'replication_factor':1 | |
| }; | |
| 
 | |
| use seaweed; | |
| 
 | |
| CREATE TABLE seaweed_files ( | |
|    path varchar, | |
|    fids list<varchar>, | |
|    PRIMARY KEY (path) | |
| );
 |