Couchbase Server 2.5.0
PHP SDK version 1.2
Could you share some code snippet, also what flags/value that key does have?
I general that error means that the value itself cannot be represented as a number. Consider the example (sorry it is in ruby, but it also uses libcouchbase).
require 'couchbase'conn = Couchbase.connect
conn.set(“foo”, “bar”)
conn.incr(“foo”)