mongo如何针对浮点数排序

WBOY
WBOYオリジナル
2016-06-06 20:12:171043ブラウズ

<code>   $result = array('limit'=>100,'order'=>array('price'=>-1));
   $fields = array('_id'=>false,'id'=>true);
   $list = $this->classMod->getList($condition,$result,$fields);
   
   </code>

mongo如何针对浮点数排序

<code>    这是现有的排序结果。。不知道如何能够针对浮点排序</code>

回复内容:

<code>   $result = array('limit'=>100,'order'=>array('price'=>-1));
   $fields = array('_id'=>false,'id'=>true);
   $list = $this->classMod->getList($condition,$result,$fields);
   
   </code>

mongo如何针对浮点数排序

<code>    这是现有的排序结果。。不知道如何能够针对浮点排序</code>

你的price是字符串,不是浮点数。查看你的驱动说明,怎么才能把数字保存成为浮点数。
MongoDB不支持Decimal类型,所以一些驱动遇到decimal的时候都是保存成为字符串以避免丢失精度。但是这也有很明显的短片,变成字符串排序就有问题了。可行的解决方案包括:

  1. 使用其他类型

  2. 同时使用decimal和float保存两个字段,排序时用float,取值时用decimal。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。