With a large topic model, I get a vector space exhausted error when trying to use get_terms(). Internally, there is some unnecessary copying of the data.
This snippet does the job - maybe turn it into a function.
foo <- apply(lda@beta, 1, function(row) lda@terms[tail(order(row), 10)])