Archive for April, 2017

Accessing Azure Tables in Lisp

Written by on April 23, 2017 in LISP, Programming with 0 Comments
Accessing Azure Tables in Lisp

In the previous post, we saw how to use cl-azure to access Azure storage, in particular, BLOBs. Today we will experiment with Tables. The following operations are currently supported by the library: – Create a new table – List all the tables available – Add rows to a table – List the contents of a table […]

Continue Reading

Accessing Azure BLOBs in Lisp

Written by on April 8, 2017 in LISP, Programming with 0 Comments
Accessing Azure BLOBs in Lisp

Recently I was looking for a Common Lisp library for accessing Azure services. Azure has official SDKs in many languages, but Lisp is not one of them. Quite understandable and I have no complaints. Because the services are all exposed via REST interfaces, it should not be difficult to implement a Lisp wrapper to use […]

Continue Reading

Top