Back to Puter

puter.kv.MAX_KEY_SIZE

src/docs/src/KV/MAX_KEY_SIZE.md

26.08411 B
Original Source

A property of the puter.kv object that returns the maximum key size (in bytes) for the key-value store.

Syntax

js
puter.kv.MAX_KEY_SIZE

Examples

<strong class="example-title">Get the max key size</strong>

html
<html>
  <body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
      puter.print("Max Key Size: " + puter.kv.MAX_KEY_SIZE);
    </script>
  </body>
</html>