Understanding select in Golang with examples
select
in Go does only one thing: wait for multiple channels at once and take action on the first one that is ready.
In other words, select is a channel-specific switch-case.
Articles related to Golang
View all tagsselect
in Go does only one thing: wait for multiple channels at once and take action on the first one that is ready.
In other words, select is a channel-specific switch-case.
In the previous article, I guided you how to install Ollama on your personal computer, and also guided you how to install a model on Ollama? Continuing the series of articles related to Large Language Model and Ollama, today I will guide you how to build a simple RAG server, integrated with Ollama.