Antonio Nesic
Antonio Nesic
@an-tao this actually sounds like a great idea. Maybe using ZMQ would work in this case?
I'm currently using it on a startup project. Great stuff, and really easy to customize. I like the Auth System. Much better than one that I used to write by...
@muriloe Amazing project mate.
It would be obvious to read the error. You can not use _TAB_ key inside the YAML file. Use 4 spaces instead. I prefer Brackets for this, and you can...
You can always use `http` module for that. Your request would look like `http://localhost:8983/solr/yourcore/select?q=*.*&fq.type="YOURTYPE&wt=json&indent=true&facet=true&facet.field=YOURFACETFIELD`, which in Go you can always write like this: ```go u, _ := url.Parse("http://localhost:8983/solr/YOURCORE/select") search :=...