邻居:最近的邻居搜索Rails和Postgres 源码
邻居 最近的邻居搜索Rails和Postgres 安装 将此行添加到您的应用程序的Gemfile中: gem 'neighbor' 并运行: bundle install rails generate neighbor:install rails db:migrate 这将启用Postgres中的 入门 创建迁移 class AddNeighborVectorToItems < ActiveRecord :: Migration [ 6.1 ] def change add_column :items , :neighbor_vector , :cube end end 添加到您的模型 class Item < ApplicationRecord has_neighbors dimensions : 3 end 更新向量 item . update ( ne
用户评论