Sphinx 索引不会乘以 Decimal 字段
Sphinx Index won't multiple a Decimal Field
我的 MySql Table 中有一个 Decimal 字段。它在 Sphinx 中没有正确索引为 sql_attr_uint(小数为 0)。我最快的解决方案是执行 Field*100 将任何小数转换为整数,但是在旋转时我得到
warning FIeld attrbute not found ignoring
我不想更改数据库中的字段,因为我需要修改 # 个查询。我如何存储整数值或将它们相乘以正确存储它们。
糟糕。 sql_attr_float。对不起。无论如何,我没有删除而是回答以防其他人像我一样懒惰:)
我的 MySql Table 中有一个 Decimal 字段。它在 Sphinx 中没有正确索引为 sql_attr_uint(小数为 0)。我最快的解决方案是执行 Field*100 将任何小数转换为整数,但是在旋转时我得到
warning FIeld attrbute not found ignoring
我不想更改数据库中的字段,因为我需要修改 # 个查询。我如何存储整数值或将它们相乘以正确存储它们。
糟糕。 sql_attr_float。对不起。无论如何,我没有删除而是回答以防其他人像我一样懒惰:)